Tags and Updating of Tags

Home Forums WordPress Theme Support BfastMag Pro Tags and Updating of Tags

This topic contains 5 replies, has 2 voices, and was last updated by  vchum 6 years, 6 months ago.

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #8708

    vchum
    Member

    Our site has what I’d deem a lot of tags. As of last night, it seems they’ve stopped updating. I know this may not be a theme issue but I appreciate the responsiveness here.

    Anything we can do about it? I’ve flushed cache and everything. Is it Cloudflare related?

    #8711

    Raja CRN
    Keymaster

    Hello,

    Like You said, It’s not a Theme issue. It could be any plugin. If you can share that particular post, We’ll check that.

    Thanks

    #8714

    vchum
    Member

    This is the post:

    https://www.torontokartclub.org/album-2017-tkc-race-10-aug-13-gamebridge-presented-by-belmar-roofing/

    There was an update for WP Suepr Cache today which did, flushed cache and waited a bit and they main tag cloud on the homepage hasn’t updated.

    I see in WP Super Cache, there’s an option not cache tags, and I enabled that option but I don’t think it has any effect as yet.

    #8720

    vchum
    Member

    I think it’s a function within a php file that limits the number of tags shown…is that the case? and I suppose it’s something I can change myself.

    #8721

    Raja CRN
    Keymaster

    Hello,

    Yes, You can customize your site as per your wish. We don’t limit any Tags.

    Thanks

    #8723

    vchum
    Member

    The functions file doesn’t have the option to specify the number of tags and I suppose it uses the top 45 as per WordPress Default. Using the code below, I pasted it at the VERY END of the functions.php file and I now can display top 60 tags:

     /*********************************************************
     * Limit the number of tags displayed by Tag Cloud widget *
     *********************************************************/
    add_filter( 'widget_tag_cloud_args', 'tj_tag_cloud_limit' );
    function tj_tag_cloud_limit($args){ 
    	// Check if taxonomy option of the widget is set to tags
    	if ( isset($args['taxonomy']) && $args['taxonomy'] == 'post_tag' ){
    		$args['number'] = 80; // Number of tags to show
     	}
    	return $args;
    }
Viewing 6 posts - 1 through 6 (of 6 total)

Only Verified Customer of this Theme Can post reply to this Support Topic! .