下面的代碼工作不錯,但它不是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標籤,一切都OK,但我想不通在那裏如何做永久鏈接。我放在那裏的固定鏈接不工作。
<?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">
謝謝@joe扣。 –