我可以试试这个:
<?php wp_title('|', true, 'right'); ?>
但在页面标题中显示网页网址。
答案 0 :(得分:2)
你应该试试这个..
<title><?php wp_title('|', true, 'right'); ?></title>
了解更多信息:https://codex.wordpress.org/Function_Reference/wp_title
答案 1 :(得分:1)
此代码将通过slug返回页面标题
<?php
global $wp_query;
$post_id = $wp_query->post->ID;
$post = get_post($post_id);
$slug = $post->post_title;
echo $slug;
?>
你也可以参考 Unable to Display Page Title Using wp_title() Function in WordPress
答案 2 :(得分:0)
您可能想获得当前帖子的标题。
<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>">
<?php the_title(); ?></a>
参考:https://codex.wordpress.org/Function_Reference/get_the_title
如果您只想要网址,则可以使用the_permalink()
功能
答案 3 :(得分:0)
只需使用the_title()
,此功能仅显示页面标题。
或使用wp_title( '|', true, 'right' )
,此功能显示为testpage | sitename