WordPress在页面上添加页面标题的方法
在主题的 functions.php
文件中添加以下代码:
function display_page_title_shortcode() {
if ( is_page() ) {
return '<h1>' . get_the_title() . '</h1>';
}
return '';
}
add_shortcode('page_title', 'display_page_title_shortcode');
即可在页面编辑器中,使用短代码 [page_title]
取得页面标题。
Post Views: 95