我目前正在使用此代码在指定页面中包含特定内容
function add_profile( $content ) {
if( is_page('profile')) include_once('page-profile.php');
else { }
}
add_filter('the_content','add_profile');
有没有办法改变这个页面的h1,允许我注入当前用户display_name而不是默认的wordpress页面名称?
答案 0 :(得分:1)
您可以更改主题,也可以使用jQuery。
你的HTML
<h1>Hello</h1>
你的jQuery
var h1 = jQuery('h1').text();
jQuery('h1').text( h1 +' Greg');
您可以从html标记中获取名称。
编辑:你也可以过滤the_title。
add_filter( 'the_title', 'my_new_title');
function my_new_title($title) {
$title = 'New Title ';
return $title;
}