繁体   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