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


PHP woo_meta函數代碼示例

本文整理匯總了PHP中woo_meta函數的典型用法代碼示例。如果您正苦於以下問題:PHP woo_meta函數的具體用法?PHP woo_meta怎麽用?PHP woo_meta使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


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

示例1: language_attributes

<!DOCTYPE html>
<html <?php 
language_attributes();
?>
>
<head>
<meta charset="<?php 
echo esc_attr(get_bloginfo('charset'));
?>
" />
<title><?php 
woo_title();
?>
</title>
<?php 
woo_meta();
?>
<link rel="stylesheet" type="text/css" href="<?php 
echo esc_url(get_bloginfo('stylesheet_url'));
?>
" media="all" />
<link rel="pingback" href="<?php 
echo esc_url(get_bloginfo('pingback_url'));
?>
" />
<?php 
wp_head();
woo_head();
?>
</head>
<body <?php 
開發者ID:stevehanlon,項目名稱:WooThemes-Canvas-Foundation-Zombie,代碼行數:31,代碼來源:header.php

示例2: woo_title

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="fr" xmlns="http://www.w3.org/1999/xhtml">
<head profile="http://gmpg.org/xfn/11">


<title><?php woo_title(); ?></title>
<?php woo_meta(); ?>

    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" type="text/css"  href="<?php bloginfo('stylesheet_url'); ?>" media="screen" />

<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php if ( get_option('woo_feedburner_url') <> "" ) { echo get_option('woo_feedburner_url'); } else { echo get_bloginfo_rss('rss2_url'); } ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/includes/js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="<?php echo get_template_directory_uri(); ?>/includes/js/Tag_google_analytics.js"></script>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />

<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="apple-touch-icon" sizes="57x57" href="<?php bloginfo('template_directory'); ?>/images/iconified/apple-touch-icon-57x57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="<?php bloginfo('template_directory'); ?>/images/iconified/apple-touch-icon-72x72.png" />
<link rel="apple-touch-icon" sizes="76x76" href="<?php bloginfo('template_directory'); ?>/images/iconified/apple-touch-icon-76x76.png" />
<link rel="apple-touch-icon" sizes="114x114" href="<?php bloginfo('template_directory'); ?>/images/iconified/apple-touch-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="<?php bloginfo('template_directory'); ?>/images/iconified/apple-touch-icon-120x120.png" />
<link rel="apple-touch-icon" sizes="144x144" href="<?php bloginfo('template_directory'); ?>/images/iconified/apple-touch-icon-144x144.png" />
<link rel="apple-touch-icon" sizes="152x152" href="<?php bloginfo('template_directory'); ?>/images/iconified/apple-touch-icon-152x152.png" />
<link rel="apple-touch-icon" sizes="180x180" href="<?php bloginfo('template_directory'); ?>/images/iconified/apple-touch-icon-180x180.png" />

<link rel="schema.dcterms" href="http://purl.org/dc/terms/">
<meta name="DC.coverage" content="France" />
<meta name="DC.format" content="text/html" />
<meta name="DC.identifier" content="http://jeuxenpromotion.fr" />
開發者ID:stampil,項目名稱:promo,代碼行數:31,代碼來源:header.php


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