您可以使用wp_head
向标题部分添加内容的操作。您可以根据需要更改输出。
<?php
add_action(\'wp_head\',\'add_meta_des\');
function add_meta_des() {
if(is_single())
{
global $wp_query;
$post = $wp_query->post;
$page_id = $post->ID;
$page_object = get_page( $page_id );
$content = wp_trim_words($page_object->post_content,30);
$output="<meta name=\'description\' content=\'".get_the_title()."--".$content."\'/>";
echo $output;
}
}
?>