我想讓這個wordpress頁面模板顯示特定帖子的摘錄。當帖子創建時,我確定將鏈接插入到我想要的位置。我能夠抓住標題,縮略圖,固定鏈接等等,但是無論出於何種原因,我無法獲得摘錄。我曾嘗試過:在WordPress中獲取帖子摘錄
the_excerpt();
get_the_excerpt();
the_content('',FALSE);
get_the_content('', FALSE, '');
get_the_content('', TRUE);
等等。當我嘗試get_the_content('', TRUE)
它給了我鏈接後的所有內容,但我想要鏈接之前的內容。
任何想法?
<?php
$query = 'cat=23&posts_per_page=1';
$queryObject = new WP_Query($query);
?>
<?php if($queryObject->have_posts()) : ?>
<div>
<?php while($queryObject->have_posts()) : $queryObject->the_post() ?>
<div>
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<br>
<?php the_post_thumbnail() ?>
<?php #the_excerpt(); ?>
<div>
<a href="<?php the_permalink(); ?>">Read More</a>
</div>
</div>
<?php endwhile ?>
</div>
<?php endif; wp_reset_query();
>
謝謝。這個工作除了給出了一個給定的字數的摘錄。我希望用戶能夠通過該帖子的CMS手動在內容主體中包含「」鏈接,從該模板將顯示一個摘錄,該摘要在他們放置更多標籤的位置結束。 – user2623706