我认为没有一种内置的机制来编写元标记,没有:您必须从wp\\u head-hook回显它。例如:
function slug_meta_tag()
{
if ( is_single() ) {
global $post;
if ( $post && $post->post_name ) {
echo \'<meta name="slug" content="\' . esc_html( $post->post_name ) . \'" />\';
}
}
}
add_action( \'wp_head\', \'slug_meta_tag\', 10, 0 );
(我正在使用
top answer here 要得到子弹,还有其他方法。)