Questions tagged «exclude»

4
从wp_query中排除帖子ID
如何从WP_Query查询中排除一个特定的帖子?(例如,显示除ID 278以外的所有帖子) 我已经尝试过post__not_in参数,但它只是删除了所有帖子。 任何帮助都会很棒。 这是我当前的查询 <?php $temp = $wp_query; $wp_query= null; $wp_query = new WP_Query(array( 'post_type' => 'case-study', 'paged' => $paged, )); while ($wp_query->have_posts()) : $wp_query->the_post(); ?> 谢谢
28 wp-query  exclude 

2
从wp_nav_menu动态排除菜单项
我尝试查找有关如何从自定义菜单中排除/删除导航菜单项的信息,而我发现的唯一线程没有任何对我有用的答案。 1.背景: 我在网站上使用WP自定义菜单(wp_nav_menu)和jqDock组合了一个Dock菜单。由于jqDock需要连续的图像或图像链接来发挥其魔力,因此我使用了自定义的Walker,因此导航菜单HTML输出看起来像这样: <div id="menu-first" class="nav"> <a><img src="http://path/to/image-1.png"/></a> <a><img src="http://path/to/image-2.png"/></a> <a><img src="http://path/to/image-3.png"/></a> etc... </div> 我的自定义沃克代码是: class custom_nav_walker extends Walker_Nav_Menu { var $tree_type = array( 'post_type', 'taxonomy', 'custom' ); var $db_fields = array( 'parent' => 'menu_item_parent', 'id' => 'db_id' ); function start_lvl(&$output, $depth) { $indent = str_repeat("\t", $depth); $output .= "\n$indent<ul …

2
如何排除自动更新的插件?
有一个选择加入过滤器,该过滤器允许我网站上的所有插件都接收自动更新: add_filter( 'auto_update_plugin', '__return_true' ); 我喜欢此功能,但我不希望所有插件都自动更新。如何排除某些我想手动执行的插件,而又允许它们自动更新?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.