我希望将wordpress标题发布到span标记。
我在span标记中使用下面的代码和the_title():
<?php echo '<div>
<img src="image.jpg"/>
<h2><span>'.the_title().'</span>
</h2></div>'; ?>
但标题显示在标签P中,结果是:
<p>TITLE_OF_THE_POST_IS_SHOW_HERE
<div>
<img src="image.jpg"/>
<h2><span></span>
</h2></div>
结果,span标签为空,如何在span标签中插入标题?
答案 0 :(得分:0)
我建议改变这个
<?php echo '<div>
<img src="image.jpg"/>
<h2><span>'.the_title().'</span>
</h2></div>'; ?>
这样的事情
<div>
<img src="image.jpg"/>
<h2>
<?php the_title( '<span>', '</span>' ); ?>
</h2>
</div>
php the_title函数参见文档Here接受参数,以便您可以在wordpress函数<span>
中定义父标记the_title()
。
请注意,the_title
会显示当前的帖子标题。如果您想从其他帖子获得标题,可以使用get_the_title( post = 3 )
作为上面提到的标记B.