要输出内容,建议您通过过滤器传递内容。get_the_content()
不会执行此操作,因此它不会执行短代码或创建<p>
标签。
因此,最好这样使用:
<?php echo apply_filters( \'the_content\', wp_trim_words( get_the_content() , 70 ) ); ?>
您还可以通过
$before
和
$after
标题的参数。这是一个简单的示例,说明了如何执行此操作:
<?php the_title(\'<h1>\', \'</h1>\'); ?>
将输出以下内容:
<h1>Your Title Here</h1>
也可以传递变量或函数。看看这个例子:
<?php the_title(\'<h1><a href="\'.get_the_permalink().\'">\',\'</a></h1>\'); ?>
这将创建标题链接并将其包装在标题标记中:
<h1><a href="some path here">Your Title Here</a></h1>
你可能想看看
this 有关的其他信息,请访问codex页
the_title_attribute()
也