显示 Wordpress 网站标题

2022-08-30 15:34:32

我想在单个博客文章页面上显示我的Wordpress网站的标题。

我在主题的“单个博客文章”中使用以下代码行.php

<h1><?php $site_title = get_bloginfo( 'name' ); ?></h1>

但是,它没有显示任何内容。


答案 1

您没有输出任何内容以显示。您只是将博客名称分配给变量。您需要回显内容。它应该是:

<h1><?php echo get_bloginfo( 'name' ); ?></h1>

希望这有助于:)


答案 2

推荐