手动给WordPress文章添加Description和Keywords

最近我又重新关注起自己的博客来,把以前没有完善的东西再慢慢完善。老早就在用百度统计,在百度统计的SEO建议里,一直提示我完善Meta信息和图片Alt信息,以前懒得去管,一直没有去弄,现在有时间就弄一下吧。

在网上搜索了一下,大多是在header.php文件里添加代码,把文章的前100字或者200字作为Description,把文章的标签作为Keywords,显然这样的方式虽然很方便,但是准确性肯定不高,对搜索引擎肯定也不够友好,所以我想的是在写文章的时候,就手动把Description和Keywords添加上去。在网上也找到了这样的方法,下面的方法来自该文章:WordPress添加自定义字段面板,我只是把他的步骤简化,再把代码合并在一起。

1、复制以下代码到你主题目录下的function.php文件里;

$new_meta_boxes =
array(
"description" => array(
"name" => "_description",
"std" => "",
"title" => "网页描述:"),
"keywords" => array(
"name" => "_keywords",
"std" => "",
"title" => "关键字:")
);
function new_meta_boxes() {
global $post, $new_meta_boxes;
foreach($new_meta_boxes as $meta_box) {
$meta_box_value = get_post_meta($post->ID, $meta_box['name'].'_value', true);
if($meta_box_value == "")
$meta_box_value = $meta_box['std'];
// 自定义字段标题
echo'<h4>'.$meta_box['title'].'</h4>';
// 自定义字段输入框
echo '<textarea cols="60" rows="3" name="'.$meta_box['name'].'_value">'.$meta_box_value.'</textarea><br />';
}
echo '<input type="hidden" name="ludou_metaboxes_nonce" id="ludou_metaboxes_nonce" value="'.wp_create_nonce( plugin_basename(__FILE__) ).'" />';
}
function create_meta_box() {
global $theme_name;
if ( function_exists('add_meta_box') ) {
add_meta_box( 'new-meta-boxes', '自定义模块', 'new_meta_boxes', 'post', 'normal', 'high' );
}
}
function save_postdata( $post_id ) {
global $new_meta_boxes;
if ( !wp_verify_nonce( $_POST['ludou_metaboxes_nonce'], plugin_basename(__FILE__) ))
return;
if ( !current_user_can( 'edit_posts', $post_id ))
return;
foreach($new_meta_boxes as $meta_box) {
$data = $_POST[$meta_box['name'].'_value'];
if($data == "")
delete_post_meta($post_id, $meta_box['name'].'_value', get_post_meta($post_id, $meta_box['name'].'_value', true));
else
update_post_meta($post_id, $meta_box['name'].'_value', $data);
}
}
add_action('admin_menu', 'create_meta_box');
add_action('save_post', 'save_postdata');

2、复制以下代码到你主题目录下的header.php文件里,放到之前;

<?php
if (is_single()) {
// 自定义字段名称为 description_value
$description = get_post_meta($post->ID, "_description_value", true);
// 自定义字段名称为 keywords_value
$keywords = get_post_meta($post->ID, "_keywords_value", true);
// 去除不必要的空格和HTML标签
$description = trim(strip_tags($description));
$keywords = trim(strip_tags($keywords));
echo '<meta name="description" content="'.$description.'" />
< meta name="keywords" content="'.$keywords.'" />';
}
?>

3、添加上面的代码后,你可以在编辑文章的时候看到如下面图片样子的自定义模块。

设置后的Description和Keywords自定义模块

我猜~这些文章你可能也感兴趣

Nie
Tags ,

相关文章

*


Top