當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Meta::description方法代碼示例

本文整理匯總了PHP中Meta::description方法的典型用法代碼示例。如果您正苦於以下問題:PHP Meta::description方法的具體用法?PHP Meta::description怎麽用?PHP Meta::description使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Meta的用法示例。


在下文中一共展示了Meta::description方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: url

">
<meta property="og:type" content="website">
<meta property="og:url" content="<?php 
Meta::url();
?>
">
<meta property="og:image" content="<?php 
echo url('/apple-touch-icon-114x114-precomposed.png');
?>
">
<meta property="og:site_name" content="<?php 
echo $config['main']['site_name'];
?>
">
<meta property="og:description" content="<?php 
Meta::description();
?>
">
<meta property="og:locale" content="en_US">

<base href="<?php 
echo url('/');
?>
">

<link rel="shortcut icon" href="<?php 
echo url('/favicon.ico');
?>
">
<link rel="apple-touch-icon" href="<?php 
echo url('/apple-touch-icon.png');
開發者ID:makesites,項目名稱:kisscms,代碼行數:31,代碼來源:head.php

示例2:

require_once "global/assets.php";
?>

<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="utf-8">
		<meta http-equiv="X-UA-Compatible" content="IE=edge">
		<meta name="viewport" content="width=device-width, initial-scale=1.0">
		<meta name="keywords" content="<?php 
echo Meta::keyword($title, $meta_keywords);
?>
">
		<meta name="description" content="<?php 
echo Meta::description($title, $meta_descriptions);
?>
">
		<meta name="author" content="VitalStorm.com">
		<link href="css/style.css" rel="stylesheet">
		<link href='http://fonts.googleapis.com/css?family=Roboto+Condensed:400,300,300italic,400italic,700,700italic' rel='stylesheet' type='text/css'>
		<link href="http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,800,700,600,300" rel="stylesheet" type="text/css">
		<script src="http://code.jquery.com/jquery-2.1.4.min.js" type="text/javascript"></script>
		<script src="js/init.js" type="text/javascript"></script>
	</head>
	<body>
		<!-- MOBILE MENU -->
		<section id="off_canvas_menu">
			<div class="close-button">
				<div>
					<img alt="close_button" src="images/close_off_canvas_light.png" >
開發者ID:vs-user2015,項目名稱:Landing_Page_Version_3.0,代碼行數:30,代碼來源:header.inc.php


注:本文中的Meta::description方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。