有很多方法,设置,瞬态,ecc。。
1分钟解决方案?
我想,你有主页吗?如果没有,请选择一个你喜欢的页面。
添加自定义字段“updated\\u for”,并在此处设置所需内容。
之后在functions.php
添加:
function updated_for( $content ) {
if ( ! is_singular() || is_front_page() ) return;
$page = get_page_by_title(\'Home Page\'); // change the title with the page you choose
if ( ! empty($page) ) {
$upd = get_post_meta($page->ID, \'updated_for\', true );
$content .= \'<p class="updated-for">\' __(\'Updated for: \') . $upd. \'<p>\';
}
return $content;
}
add_filter(\'the_content\', \'updated_for\', 9999);