Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #1269675
Tag Cloud Widget
Closed

Comments

  • stevenemerson started the conversation

    Hi guys, love the theme, some amazing work.

    Is there any way to exclude specific tags from the Tag Cloud widget?

    Something like this, but I noticed there is no 'exclude' by tag ID field in the Soledata theme's Tag Cloud widget.
    https://en.support.wordpress.com/widgets/tag-cloud-widget/

    I have tried some other tag cloud widget plugins and they're all quite bad and certainly don't have the nice look of the built in Soledad one.

    Many thanks

    Steve

  •  2,699
    PenciDesign replied

    Hi,


    For now, Soledad theme doesn't support this feature from Tag Cloud widget itself.

    You can do that by add more this code at the end of functions.php file - like on this image


    add_filter( 'widget_tag_cloud_args', 'penci_exclude_tag_from_tag_cloud');
    function penci_exclude_tag_from_tag_cloud( $args ) {
      $args[ 'exclude' ] = '21'; // ID of the tag. If multiple tags use comma delimited sting '2,5,36'
      return $args;
    }


    With '21' is your tag ID - If you want to exclude multiple tags, use comma delimited string. Example: '2,5,36'

    Best Regards,

    PenciDesign