以下代码运行良好,但它没有附带 HTML 标记,如<span>
、<b>
、<strong>
等。
<?php $recent = new WP_Query("page_id=2"); while($recent->have_posts()) : $recent->the_post();?>
<?php
echo substr(get_the_excerpt(), 0,450);
?>
<a href="<?php the_permalink() ?>" rel="bookmark">
More About Us
</a>
这是另一个输出 HTML 标签的代码,一切正常,但我不知道如何在那里做永久链接。我放在那里的永久链接不起作用。
<?php
$my_id = 2;
$page_id = get_post($my_id);
$content = $page_id->post_content;
echo substr($content, 0, 450);
?>
<a href="<?php the_permalink() ?>" >More About Us</a>
此外,获取特定页面内容的最佳方式是什么,如下例所示?
<h2>title</h2>
<div>featured image </div>
<div>content</div>
<a href="<?php the_permalink() ?>" rel="bookmark">