当帖子标题为空时删除空格

时间:2013-11-08 作者:Pankaj

我希望我的自定义帖子类型标题在帖子中没有标题时不留空格。我试图使用以下代码,但删除了h1和其他标记。请帮忙。

<?php if (the_title() != \'\') { ?>
              <h1 class="post_title"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1>
              <?php } else { } ?>
enter image description here

1 个回复
最合适的回答,由SO网友:Stephen Harris 整理而成

您需要使用get_the_title() (codex). the_title() (codex) 实际上,除了打印标题之外,不会返回任何内容。

结束

相关推荐