我不是php开发人员,我需要修改一个主题,具体来说,该区域有不同的类别,例如:“领养猫”和“领养狗”都在同一个页面中,目前使用类别标签我可以正确过滤,但当我导航(我有下一个和上一个帖子按钮)时,它没有正确过滤。
我在主题中找到了以下代码:
<div id="portfolio-full-width">
<?php
$args = array(
\'number_of_columns\' => 4,
\'image_size\' => \'large-thumb\',
\'posts_per_page\' => 50,
\'filterable\' => true
);
mo_display_portfolio_content($args);
?>
以及mo\\u display\\u portfolio\\u内容代码:
function mo_display_portfolio_content($args) {
global $mo_theme;
$mo_theme->set_context(\'loop\', \'portfolio\'); // tells the thumbnail functions to prepare lightbox constructs for the image
$paged = (get_query_var(\'paged\')) ? get_query_var(\'paged\') : 0; // Do NOT paginate
$args[\'query_args\'] = array(\'post_type\' => \'portfolio\', \'posts_per_page\' => $args[\'posts_per_page\'], \'filterable\' => $args[\'filterable\'], \'paged\' => $paged);
mo_display_portfolio_content_grid_style($args);
$mo_theme->set_context(\'loop\', null); //reset it
}
第一个问题:如何修改以及用于此目的的代码是什么??
提前感谢您的帮助。