Quantcast
Channel: Peter Zhou的博客 »程序
Viewing all articles
Browse latest Browse all 6

How to Exclude A WordPress Category From Search Results

$
0
0

Insert the code to search.php after  <?php get_header(); ?>
<?php
$page = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
$s = get_query_var(‘s’);
query_posts(“s=$s&cat=-3&paged=$page”);
?>

-3 means category ID -3 is excluded.


Viewing all articles
Browse latest Browse all 6

Trending Articles