如何覆盖wordpress中wp-includes的query.php文件的page_limit?

时间:2012-04-10 09:09:56

标签: php wordpress

我是php新手。

我想从窗口小部件覆盖query.php文件的page_limit。 如果未定义要显示的帖子数,我想显示所有帖子。我使用以下代码。

    add_filter('post_limits', 'amr_remove_limits');
    function amr_remove_limits () {
        return ('');   
        // return an empty string so that NO limits are imposed in the query
    }

它不起作用.. 任何建议或参考都会有所帮助。

1 个答案:

答案 0 :(得分:1)

你试过this我假设 你的函数没有任何参数。

function amr_remove_limits ($limit) {
    return '';
}

尝试以上操作,无论你不使用the argumant

相关问题