0
我有一個WordPress網站,我想顯示當前類別(當前文章除外)中的所有帖子的列表。如何顯示自定義字段,而不是the_title
我需要使用名爲「test」而不是帖子標題的特定custom-field
的值作爲錨文本。
如何編輯下面的代碼以完成該操作並排除當前帖子?
<?php
global $post;
$categories = get_the_category();
foreach ($categories as $category) :?>
<ul>
<?php
$posts = get_posts('numberposts=3&category='. $category->term_id);
foreach($posts as $post) : ?>
<li>
<a href="<?php the_permalink(); ?>">
<?php the_title(); ?>
</a> </li>
<?php endforeach; ?>
<?php endforeach; ?>
</ul>
「'是編輯的主要部分 –
GingerGirl
對不起,忽略了那部分。更新。 – danjah
該代碼有PHP語法錯誤,並且它不會加載:( – GingerGirl