php - Button Load Categories not working? -


i working on buttons display category, without going page? thought might able simple php im using wordpress, each button has option , load category, here code:

<input type="button" name="category1" value="category1"> <input type="button" name="category2" value="category2"> <input type="button" name="category3" value="category3">  <?php if["category1"] {        query_posts('category_name=category1&posts_per_page=25&paged='.get_query_var('paged')); if (have_posts()): while (have_posts()):the_post(); }; if["category2"] {     query_posts('category_name=category2&posts_per_page=25&paged='.get_query_var('paged')); if (have_posts()): while (have_posts()):the_post(); }; if["category3"] {     query_posts('category_name=category3&posts_per_page=25&paged='.get_query_var('paged')); if (have_posts()): while (have_posts()):the_post(); }; ?> 


Comments

Popular posts from this blog

javascript - Jquery show_hide, what to add in order to make the page scroll to the bottom of the hidden field once button is clicked -

javascript - Highcharts multi-color line -

javascript - Enter key does not work in search box -