您需要预先指定存储在中的值_subtitle
以使其工作。请在主题函数中放置以下代码。php文件,它应该工作。请告诉我进展如何,以便我可以进一步协助:
add_filter( \'the_content\', \'prepend_subtitle_to_content\' );
function prepend_subtitle_to_content( $content ){
$subtitle = get_post_meta( get_the_ID(), \'_subtitle\', true );
if ( !empty( $subtitle ) ) {
return esc_html( $subtitle ) . $content ;
}
return $content;
}