0

以下代码运行良好,但它没有附带 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">
4

2 回答 2

1

使用get_permalink()

$permalink = get_permalink($page_id->ID);

根据您的其他要求

标题

$title = $page_id->post_title;

缩略图get_the_post_thumbnail()

$thumbnail = get_the_post_thumbnail($page_id->ID);

内容

$content = $page_id->post_content;
于 2013-08-17T15:23:01.333 回答
0

我刚刚找到解决方案

 <?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>
    <?php endwhile; ?>

substr(get_the_content) instead of get_the_excerpt现在用它工作正常。

于 2013-08-17T15:42:37.533 回答