• 0

Excluding post or category from random post widget


Question

Hey there guys.

Ok thing is I really suck at php and I'm trying to exlude a post, or possible a category, either one would work, from a random post widget I have.

If you check out the site you can see the widget on the right side (random paranormal movies) is displaying my sticky welcome message at the top.

I know the category id and post id and have tried a few things to no avail.

Anyway any help would sure be welcome:

<?php

/*

Plugin Name: Simple Random Posts Widget

Plugin URI: http://infobak.nl/si...for-wordpress//

Version: 1.26

Description: Widget which displays random posts

Author: Jan Meeuwesen

Author URI: http://infobak.nl/si...-for-wordpress/

License: GPLv2

Copyright 2012 Jan Meeuwesen

*/

define("DefNoOfPosts", "5"); // default number of random posts to display

class SimpleRandomPostsWidget extends WP_Widget {

function SimpleRandomPostsWidget()

{

parent::WP_Widget( false, 'Simple Random Posts', array('description' => 'Random posts widget') );

}

function widget($args, $instance)

{

global $NewSimpleRandomPosts;

$title = empty( $instance['title'] ) ? 'Simple Random Posts' : $instance['title'];

echo $args['before_widget'];

echo $args['before_title'] . $title . $args['after_title'];

echo $NewSimpleRandomPosts->GetSimpleRandomPosts( empty( $instance['ShowPosts'] ) ? DefNoOfPosts : $instance['ShowPosts'] );

echo $args['after_widget'];

}

function update($new_instance)

{

return $new_instance;

}

function form($instance)

{

?>

<p>

<label for="<?php echo $this->get_field_id('title'); ?>"><?php echo 'Title:'; ?></label>

<input type="text" name="<?php echo $this->get_field_name('title'); ?>" class="widefat" id="<?php echo $this->get_field_id('title'); ?>" value="<?php echo esc_attr($instance['title']); ?>" />

</p>

<p>

<label for="<?php echo $this->get_field_id('ShowPosts'); ?>"><?php echo 'Number of entries:'; ?></label>

<input type="text" name="<?php echo $this->get_field_name('ShowPosts'); ?>" id="<?php echo $this->get_field_id('ShowPosts'); ?>" value="<?php if ( empty( $instance['ShowPosts'] ) ) { echo esc_attr(DefNoOfPosts); } else { echo esc_attr($instance['ShowPosts']); } ?>" size="3" />

</p>

<?php

}

}

class SimpleRandomPosts {

function GetSimpleRandomPosts($noofposts)

{

rewind_posts();

query_posts('orderby=rand&showposts='.$noofposts);

if (have_posts()) :

echo '<ul>';

while (have_posts()) : the_post();

echo '<div id="post-'.get_the_ID().'"><li><a href="'.get_permalink().'">'.get_the_title().'</a></li></div>';

endwhile;

echo '</ul>';

endif;

wp_reset_query();

}

}

$NewSimpleRandomPosts = new SimpleRandomPosts();

function SimpleRandomPosts_widgets_init()

{

register_widget('SimpleRandomPostsWidget');

}

add_action('widgets_init', 'SimpleRandomPosts_widgets_init');

?>

8 answers to this question

Recommended Posts

  • 0

Example

&lt;?php $query = new WP_Query( array( 'post_type' =&gt; 'post', 'post__not_in' =&gt; array( 2, 5, 12, 14, 20 ) ) ); ?&gt;

Those ID's in the array of "post__not_in" are what can be generally excluded.

All of your custom querying options are on this page in the WordPress Codex.

http://codex.wordpress.org/Class_Reference/WP_Query

  • 0

Example

&lt;?php $query = new WP_Query( array( 'post_type' =&gt; 'post', 'post__not_in' =&gt; array( 2, 5, 12, 14, 20 ) ) ); ?&gt;

Those ID's in the array of "post__not_in" are what can be generally excluded.

All of your custom querying options are on this page in the WordPress Codex.

http://codex.wordpre...erence/WP_Query

Thanks again mate for the help.

What is confusing me though is that does the plugin which the original code is from write into the query file? Do I have to go into the query.php file and make the changes in there or can i make them in the original plugin file?

Sorry man you got me a little lost here. Coding has never been my strong suit.

  • 0

Thanks again mate for the help.

What is confusing me though is that does the plugin which the original code is from write into the query file? Do I have to go into the query.php file and make the changes in there or can i make them in the original plugin file?

Sorry man you got me a little lost here. Coding has never been my strong suit.

no the plugin is using wp_query (query.php)

just edit the code directly, edit the plugin.

Either from the files or admincp>plugins>edit

  • 0

no the plugin is using wp_query (query.php)

just edit the code directly, edit the plugin.

Either from the files or admincp>plugins>edit

The code I posted is from the plugin.

I also can't find any obvious place where I could stuff the exlude or that is the -.

You think I might have to include the line he mentioned before inside the code:

<?php $query = new WP_Query( array( 'post_type' => 'post', 'post__not_in' => array( 2, 5, 12, 14, 20 ) ) ); ?>

This topic is now closed to further replies.
  • Posts

    • I don't have a problem with adverts, I not fond of the tracking. My main problem is when you have to keep clicking close to remove them before you can see anything On the site. The ones that keep updating and moving stuff around as they are different sizes are as bad. Neowin is not too bad with Adverts, but ones that keeps updating or have animation can be distracting when reading something, like the one showing now, about how much should I walk to lose weight. I realise sites need adverts to survive, but stop changing them every few seconds.
    • SQL Server Management Studio 22.7 brings "What's New" page, T-SQL formatting, and lots more by Usama Jawad SQL Server Management Studio (SSMS) is the tool of choice for most developers working with SQL infrastructure and data. Microsoft recently released SSMS version 22, and in the past few months, it has been steadily releasing point upgrades to refine the integrated development environment (IDE). Now, it has released SSMS version 22.7.0 with a bunch of new features and interfaces. For starters, SSMS 22.7 has netted a native "What's New" page, which highlights the top features and bug fixes present in the latest release. However, Microsoft says that this page won't annoy you much as it will only show up each time you update SSMS, and once you dismiss it, it won't be shown again to you until the next release. Secondly, Microsoft has finally introduced T-SQL formatting inside SSMS. The good thing about this is that it does not require installing any additional components, as it is built into the native experience. All you have to do is right-click the query editor window and select Format SQL from the context menu. Additionally, you also have several customization options at your disposal, such as the ability to automatically place semicolons at the end of a statement, split clauses across multiple lines, and more. However, this capability is only in preview for now. Additionally, Microsoft has introduced a preview of Agent Mode, which allows the AI model to automatically perform complex workflows on your behalf. Furthermore, Agent Mode will operate in read-only mode by default, so that you don't have to worry about the AI model accidentally deleting your data. On a related note, Microsoft is finally allowing users to configure the execution context of GitHub Copilot. This can be controlled per database using the CONSTITUTION.md file, where you specify the user details for the agentic executor. You can find details about this and additional bugfixes in Microsoft's blog post here.
    • I only use 3 extensions in Zen. I don't need or want a ton of stuff in my browser i don't use.
    • I prefer to choose my own ad bockers, not what the browser seems to think I need. i remember the days when a browser was just that, now they try and be everything and add stuff in that not all of us want. I bet Brave is full of AI rubbish? I will stick with Zen, not perfect, but better than others.
  • Recent Achievements

    • One Month Later
      johnjacobb40 earned a badge
      One Month Later
    • One Year In
      Primer1st earned a badge
      One Year In
    • Experienced
      JayZJay went up a rank
      Experienced
    • Reacting Well
      Sir_Timbit earned a badge
      Reacting Well
    • Week One Done
      rubentuben8 earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      516
    2. 2
      PsYcHoKiLLa
      231
    3. 3
      +Edouard
      144
    4. 4
      ATLien_0
      86
    5. 5
      Steven P.
      82
  • Tell a friend

    Love Neowin? Tell a friend!