大家好, 我遇到了一个问题, 在wordpress中, 我使用post__not_in来不显示id 10的类别。我尝试了此操作, 但它似乎仍然适合发布。谢谢大家!
<
?php
$cat_args = array(
'orderby' =>
'post_date', 'order' =>
'DESC', 'child_of' =>
0, 'post__not_in' =>
array(10), );
$categories =get_categories($cat_args);
foreach($categories as $category) {
echo '<
dl>
';
echo '<
h3 class="category-name">
' . $category->
name.'<
/h3>
';
$post_args = array(
'numberposts' =>
-1, 'category' =>
$category->
term_id
);
$posts = get_posts($post_args);
foreach($posts as $post) {
?>
<
dd>
<
a class="article" target="_blank" href="http://www.srcmini.com/<
?php the_field('article_link') ?>
">
<
?php the_title();
?>
<
/a>
<
span class="news-source">
- <
?php the_field('news_source') ?>
<
/span>
<
p class="important">
<
?php the_field('important') ?>
<
/p>
<
/dd>
<
?php
}
//echo '<
dd class="view-all">
<
a href="' . get_category_link( $category->
term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $category->
name ) . '" ' . '>
View all posts in ' . $category->
name.'<
/a>
<
/dd>
';
echo '<
/dl>
';
}?>
#1【我想在WordPress中排除某些帖子()】这似乎对我来说很棒:’ exclude’ => array(10)
推荐阅读
- 我想知道,他们如何找到我的wordpress主题和插件
- 我想说的是array(‘cat’=’Current category ID’)我该怎么做()
- 我想在所有内容图像上应用CSS类(bootstrap).img响应
- 我只想在WordPress的特定页面上添加自定义短代码
- 我已经在Boostrap中制作了一个轮播,并粘贴到了我的wordpress主题中,但幻灯片却叠了起来。我究竟做错了什么()
- Visual Composer是否与divi兼容( [关闭])
- 这样使用”自定义字段”更改WooCommerce中的”添加到卡片文本”是否很好()
- 类似这样的网站在wordpress上可以实现吗()
- WordPress style.css模板元素的语法在任何地方都可用吗()