对于类别的元描述,可以使用followinf dunction
//META DESCRIPTION FUNCTION
function seometadescription(){
global $post, $posts;
if ( is_single() || is_page() ) :
$customDesc = \'meta_desc\';
if ( have_posts() ) : while ( have_posts() ) : the_post();
$descriere = get_post_meta($post->ID, $customDesc, true);
endwhile;
endif;
elseif( is_category() ):
$descriere = category_description();
elseif( is_front_page() ) :
$descriere = \'some words for front page description\';
endif;
$customMetaDesc = \'<meta name="description" content="\'.$descriere.\'" />\';
echo $customMetaDesc;
}
// end meta desc function
$customDesc=是一个自定义字段,我用于描述帖子和页面,如果您没有将页面作为首页替换为is\\U front\\U page(),则使用is\\U home
对于META关键字,我在这个上找到了一个函数web site