• Hello,

    I’m trying to create my own query posts widget in which I will, among other things, be able to choose what categories to query posts from.

    In the “Query Posts Plugin” you enter the category number(s) in a textfield, and it worked great. I’ve managed to make my own with only that part right now, but you don’t always know the numbers.
    It’d be better to allow the person to select one or multiple in a select list. Since I’m quite new to widgets, and not a very experienced PHP programmer at all, I’m stuck.

    This is what I got now, it let’s you enter a category number and it’ll query the posts from it:

    class OwnQuery extends WP_Widget {
    	function OwnQuery() {
    		// widget actual processes
    		parent::WP_Widget(false, $name = 'OwnQuery');
    	}
    
    	function form($instance) {
            $category = esc_attr($instance['category']);
            ?>
    <p>Categories:<br />
    		<?php
    		$category_ids = get_all_category_ids();
    		foreach($category_ids as $cat_id) {
    		  $cat_name = get_cat_name($cat_id);
    		  echo $cat_id . ': ' . $cat_name . '<br />';
    		}
    		?>
    </p>
    		<p><label for="<?php echo $this->get_field_id('category'); ?>"><?php _e('category:'); ?> <input class="widefat" id="<?php echo $this->get_field_id('category'); ?>" name="<?php echo $this->get_field_name('category'); ?>" type="text" value="<?php echo $category; ?>" /></label></p>
            <?php
    	}
    
    	function update($new_instance, $old_instance) {
    		// processes widget options to be saved
    		$instance = $old_instance;
    		$instance['category'] = strip_tags($new_instance['category']);
    	        return $instance;
    	}
    
    	function widget($args, $instance) {
    		// outputs the content of the widget
            extract( $args );
            $category = apply_filters('widget_title', $instance['category']);
            ?>
                  <?php echo $before_widget; ?>
    				<?php if ( $category ) ?>
    					<?php
    
    					// Start your custom WP_query
    					$my_query = new WP_query();
    					$args = array(
    						'cat' => $category
    						);
    					// Assign predefined $args to your query
    					$my_query->query($args);
    
    					// Run your normal loop
    					if ($my_query->have_posts()) : while ($my_query->have_posts()) : $my_query->the_post();
    						// do loop stuff
    						echo the_title();
    						echo the_content();
    						echo "<hr />";
    					endwhile;
    					else :
    						echo "no posts";
    					endif;
    
    					// RESET THE QUERY
    					wp_reset_query();
    					?>
                  <?php echo $after_widget; ?>
            <?php
    	}
    }
    add_action('widgets_init', create_function('', 'return register_widget("OwnQuery");'));

    I’ve tried out different things with dropdown lists etc, but I’ve only failed.
    Anyone got an idea, or anyone made their own that would work?

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • There is already a plugin that does exactly this..
    https://www.ads-software.com/extend/plugins/query-posts/

    ??

    Thread Starter tta

    (@tykho)

    yeah I mentioned Query Posts Plugin in my original post. ??
    Problem with it is that you have to enter the category id, instead of having a dropdown menu or select list to choose category by name, which I want to be able to do, and is what I asked about, hehe. ??

    I’m looking at the screenshot on the plugin page:
    https://www.ads-software.com/extend/plugins/query-posts/screenshots/

    And I can see that there’s a drop down list called “category name”, is this out in the latest version? Because I can’t find it, also my window that opens up is all messed up. ??

    Thread Starter tta

    (@tykho)

    Ah, stupid me.
    I didn’t realize I could enter the category names, haha. Don’t know why I figured I gotta enter the cat id (which also works!). ??
    thanks

    Late to arrive, but yes i agree, that’s odd and maybe the screenshot is from an older version that managed categories differently.

    Glad to hear you figured out the problem… ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Own query posts widget, category selection’ is closed to new replies.