动态更改页眉

时间:2013-09-10 03:48:08

标签: php wordpress

我目前正在使用此代码在指定页面中包含特定内容

function add_profile( $content ) {
if( is_page('profile')) include_once('page-profile.php');
else { }
}

add_filter('the_content','add_profile');

有没有办法改变这个页面的h1,允许我注入当前用户display_name而不是默认的wordpress页面名称?

1 个答案:

答案 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;
}