在WordPress .....中获取其他页面的页面内容时,显示的内容没有单行标记

时间:2019-01-14 04:32:45

标签: php wordpress

我正在使用此代码,但它仅以行显示内容。 在此页面中,包含诸如h1 h2和p

之类的标签的内容
<?php
$your_query = new WP_Query( 'pagename=who-we-are' );
while ( $your_query->have_posts() ) : $your_query->the_post();
$content = wpautop(get_the_content());
$trimmed_content = wp_trim_words( $content, 100, NULL );
echo $trimmed_content;
endwhile;
wp_reset_postdata();
?>

1 个答案:

答案 0 :(得分:0)

请使用the_content()代替get_the_content()

因为get_the_content()不会通过the_content传递内容。这意味着它不会自动嵌入视频或扩展短代码。

有关更多帮助,请参见以下链接:get_the_contentthe_content

我希望它将对您有所帮助。谢谢:)