Forums

[Plugin: TDO Tag Fixes] Going to Page 2? (3 posts)

  1. ridesign
    Member
    Posted 2 years ago #

    Is there a way to go to page 2 of results when using this tdo fix plugin?

    http://wordpress.org/extend/plugins/tdo-tag-fixes/

  2. StefanMz
    Member
    Posted 1 year ago #

    You can completely switch paging off following this idea.

    If you don't need to distinguish categories it is simply that (to be put into functions.php):

    add_action( 'parse_request', 'show_all_entries_in_category' );
    
    function show_all_entries_in_category( $args ) {
    	if( isset( $args->query_vars['category_name'] )) {
    		$args->set_query_var( 'nopaging', true );
            }
    }
  3. ridesign
    Member
    Posted 1 year ago #

    Thanks for your reply, but I need to idstinush between categories. Also I have alot of posts so need to have paging.

Topic Closed

This topic has been closed to new replies.

About this Topic