Print post title with markup

时间:2019-01-26 作者:dan2017

我有一段代码可以输出我的帖子标题,但如何将其输出为H4?

以下是我的代码:<?php echo get_the_title( $post_id ); ?>谢谢

2 个回复
最合适的回答,由SO网友:RiddleMeThis 整理而成

用你的例子,你可以。。。

<h4><?php echo get_the_title( $post_id ); ?></h4>

$h4 = get_the_title();
echo \'<h4>\' . $h4 . \'</h4>\';
更多关于get_the_title().

或者你可以使用the_title().

the_title( \'<h4>\', \'</h4>\' );

SO网友:fuxia

最简单的方法是:

<h4><?php echo get_the_title( $post_id ); ?></h4>
但是,如果您想首先检查该帖子是否有标题,并避免为空<h4> 如果没有,你可以写:

$title = get_the_title( $post_id );

if ( $title )
    echo "<h4>$title</h4>";