Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在单个博客文章页面上显示我的 Wordpress 网站的标题。
我在主题的“single blog post.php”中使用以下代码行
<h1><?php $site_title = get_bloginfo( 'name' ); ?></h1>
但是它没有显示任何东西。
您没有输出任何要显示的内容。您只是将博客名称分配给变量。您需要回显内容。它应该是 :
<h1><?php echo get_bloginfo( 'name' ); ?></h1>
希望这可以帮助 :)