The tag cloud widget uses wp_tag_cloud()
to display the tags, which defaults to 45 tags.
Source: https://developer.wordpress.org/reference/functions/wp_tag_cloud/
One can use the widget_tag_cloud_args
filter to change this number (and any other arguments passed to wp_tag_cloud()
. Here’s an example:
function wpse_235908_tag_cloud_args( $args ) {
$args['number'] = 70; // the number of tags you want to display.
return $args;
}
add_filter( 'widget_tag_cloud_args', 'wpse_235908_tag_cloud_args' );
You can add this piece of code in a custom plugin or your theme’s function.php file for example.
Note: There’s also a doc reference for the widget_tag_cloud_args
filter, but the documentation is currently wrong as per this core ticket.
Related Posts:
- Show post tags in a widget
- Custom Tag Cloud widget missing tags
- Display assigned terms with link
- Show tags selection similar to category selection in WordPress
- Is it possible to display tag cloud widget by category?
- displaying tags in a widget
- Making tags appear as an Unordered list instead of a ‘cloud’
- Trying to filter tag cloud args, but it removes the wrapper
- Jquery checkbox -show posts with checked tags
- Sorting Tag Cloud by Popularity
- Display current tag archive’s name and description in sidebar
- Change Widget that display posts from categories to tags
- Limit number of Widgets in Sidebars
- How to load Widget javascript + css files only if used?
- check if registered sidebar is active & has widget content
- How to use wp_dequeue_style() for style enqueued in WP_Widget class
- $post>ID displays wrong post ID
- How to add Custom Fields to Settings in Widget Options for all Registered Widgets?
- link wordpress and stackoverflow
- Widget with random posts from a blog for external sites
- How to use stack flair on my site?
- Trigger Submit Event when Widget is added to Sidebar
- Ask user permission when activating a plugin
- Why wordpress popular post widget shows Undefined index?
- How to enable / use new video / audio / images widgets in WordPress 4.8?
- How do i export the HTML from text widgets?
- Latest/Recent posts widget title link
- the_widget() and widget’s ID
- Widgets not expanding on wordpress 3.3 widget dashbord
- How to put Stack Exchange Flair as widget?
- Removing default theme widgets
- Image Upload Widget Issue
- Wp Customizer event for when a new widget has been added
- wp_register_sidebar_widget() disappered my Widgets submenu – what am I doing wrong?
- Display single widget
- Add pagination to listing plugin
- How to extend WP_Widget_Media
- Drafts widget for admin page
- Global $wpdb is not showing correct data with function call
- Text widget doesn’t save the content
- Post ID displayed instead of title [closed]
- Color picker in widget appears twice when added via the Customizer
- Hide widget (and white space) on specific resolution [closed]
- Create an extra Widget Areas in WordPress TwentyTwelve
- How do I pass the id of my widget to javascript in the form function?
- Widget – link to page rather than absolute url
- How i can widget ID get after drag for wordpress with jquery?
- Programmatically add widgets to sidebars
- Are widgets meant to be used outside of sidebars?
- Is there a WordPress widget for my webpage?
- Validating widget’s configuration data on Admin page
- Turn off “This is the Primary Sidebar Widget Area” message
- Inserting Read More Tag in Widget
- Adding a WordPress Widget to a settings page
- Display posts from category in post content?
- Is there any tab widget plugin supporting third party widgets? [closed]
- Add footer widgets
- Widgets in WP 4.3 disappearing – How to fix?
- Making jQuery .change() event persistent after widget save
- Widget background images missing on second blog excerpt page
- How should I add a “widget” like element?
- Custom CSS for a particular text/html widget in WordPress
- Removing side bar widgets from GovPress theme
- What conditional to use for dynamic sidebar check?
- how to show only particular category post in archive widgets
- How to test if the widgetized area has any widgets?
- Saving widget gets an undefined variable
- Trouble accessing a multidimensional array to add classes to default WordPress widgets
- Distinguish between different widgets of the same type
- links to Media Library content in sidebar per page
- Why is registering a sidebar for each page causing my sidebars to reset?
- widgets in footer?
- Can you hide a widget based on its content?
- Quick Draft widget in weird place on dashboard after being re-added
- How can I remove WordPress element IDs and Class names in the HTML?
- Remove widgets on mobile front page without affecting desktop
- Widget not appearing in customizer
- Widget display nothing
- Collapsible widgets [closed]
- Widget settings disappear after refresh
- How to display author meta in a sidebar widget
- Is it ok not to set widget in the main page of a one page WordPress Theme?
- How to get widget content in WordPress based on it’s ID?
- Recent Posts Widget URL / Domain change
- New Custom Widget Call a Different Widget Function
- Make a widget to my footer
- How to change text of a widget depend on condition?
- Add space to the end on a widget
- Insert to wp_footer if widget is found in the sidebar
- Options page for widget
- user definable sidebar per page
- List.js inside WordPress widget
- Show or hide custom menu widget in side bar conditionally
- Custom tabs widget don’t work in google chrome, is blocked, do not change the tabs. Why?
- WordPress Hide Widget If $_Session Is Active?
- Post Thumbnails on Sidebar Widgets
- Widget which displays thumbnails, but links to urls?
- Using Conditional Tags to restrict something to 1 user?
- Problem on register/login widgets
- getBlockVariations(…) is undefined in Widget and Template Part editors but not Post Editor