我知道这可能很简单,但我对WP和PHP仍然有点新意,无法想出这个。
最初,该页面将最近的帖子从1个类别拉到了一组不同的列中。使用自定义函数很好地完成了这项工作:
category_loop('columns', 'Recent Articles', 4);
function category_loop($id, $name, $number)
类别ID是列,部分标题是最近的帖子,总共有4个帖子。
好吧,现在他们需要将它从2个类别 - “列”和“评论”中拉出来,并且在不重写所有当前代码的情况下,我想知道是否有办法用数组做某事(或任何事情) )允许在函数中使用2类$ id。
非常感谢任何帮助,如有必要,我可以提供更多代码。
非常感谢!
编辑:这是函数本身:
}
function category_loop($id, $name, $number){
$weather = get_category_by_slug('the-weather');
$acupuncture = get_category_by_slug('acupuncture-after-the-apocalypse');
$letters = get_category_by_slug('letters-from-the-editors');
?>
<div class="category-block">
<div class="category-block-title">
<div style="margin-top: 4px;">
<?php echo $name ?>
</div>
</div>
<div id="<?php echo $id ?>-posts" class="category-post-loop">
<?php
remove_action('genesis_post_content', 'genesis_do_post_content');
add_action('genesis_post_content', 'do_post_excerpt');
add_filter('genesis_post_title', 'trop_byline_short');
// Columns -- be sure to remove featured posts
$args = array( 'category_name' => $id, 'cat' => '-'.$weather->cat_ID.',-'
.$acupuncture->cat_ID.',-'.$letters->cat_ID, 'orderby' => 'date',
'posts_per_page' => $number, 'meta_query' => array(array( 'key' => 'featured',
'compare' => 'NOT EXISTS' )) );
genesis_custom_loop( $args );
remove_filter('genesis_post_title', 'trop_byline_short');
add_action('genesis_post_content', 'genesis_do_post_content');
remove_action('genesis_post_content', 'do_post_excerpt');
?>