簡體   English   中英

Wordpress:從按類別收集的帖子列表中刪除鏈接

[英]Wordpress: Remove links from list of posts gathered by a category

我有屬於某個類別的帖子的鏈接列表。 該列表顯示在帖子中。 生成列表的代碼如下:

<?php 
$sel_works = new WP_Query('category_name=Selected_Works&showposts=-1'); while($sel_works->have_posts()) : $sel_works->the_post(); 
?>
<a href="<?php the_permalink() ;?>"><?php the_title(); ?></a><span class="CatSep"> / </span></li>
<?php endwhile; ?>

我想知道是否有一種方法可以刪除列表中指向我們已經發布的帖子的鏈接。 我在定義條件方面遇到困難,非常感謝您的幫助。

<?php
$current_id = get_the_ID();
$query_settings = array(
    'category_name'=>'Selected_Works',
    'posts_per_page'=>-1,
    'post__not_in'=>array($current_id)
);
$sel_works = new WP_Query($query_settings);
while($sel_works->have_posts()) : $sel_works->the_post(); 
?>
<a href="<?php the_permalink() ;?>"><?php the_title(); ?></a><span class="CatSep"> / </span></li>
<?php endwhile; ?>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM