0
我創建了一個顯示來自單個類別(當前類別的帖子)的所有帖子的小部件,並且會發生什麼,它的效果很好,但將單個帖子上的帖子標題更改爲相同標題作爲最後一個帖子ID的最新標題。列出改變單個帖子標題的wordpress頁面
這似乎是我將當前的職位標題分配給我創建的foreach循環的帖子標題,但我無法弄清楚在哪裏。
下面是代碼:
<?php
$post_id = get_the_ID();
$args = array('category' => 2, 'post_type' => 'post', 'order' => 'ASC');
$postslist = get_posts($args);
foreach ($postslist as $post) {
$class = '';
if ($post_id == $post->ID){ $class = 'class="current"'; }
?>
<li><a href="<?php the_permalink(); ?>" <?php echo $class ?>><?php the_title(); ?></a></li>
<?php }; ?>