WordPress 使用自定义fields 实例二: 添加文章Meta标签(keywords /description)

首先你需要参考这篇文章来添加 自定义的field: http://www.iamhippo.com/2015-12/260.html

 然后再说下添加文章meta 标签, 其实这种功能可以使用许多的seo 插件,例如 yoast seo,all in one seo 等等来直接实现. 但是从精简wordpress 的角度考虑,也可以直接使用 自定义fields 来实现

实现过程:

  1. 自定义’description’ 和 ‘keywords’ 两个fields, 并且填入相应的值
  2. 找到你的模板的header 部分, 一般是header.php 直接添加如下代码:

 

<?php if ( is_single() ) { ?>
<meta name=”keywords” content=”<?php $key=”keywords”; echo get_post_meta($post->ID, $key, true); ?>” />
<meta name=”description” content=”<?php $key=”description”; echo get_post_meta($post->ID, $key, true); ?>” />
<?php } ?>

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

This site uses Akismet to reduce spam. Learn how your comment data is processed.