arie_cristianD

customize categories widget

Feb 22nd, 2026
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. add_filter( 'widget_categories_args', 'edit_category_widget', 99, 3 );
  2.  
  3.  
  4. function edit_category_widget( $args, $instance ) {
  5.  
  6.         $args['include'] = array( 1, 18, 19 ); /* list of ID Category */
  7.  
  8.     return $args;
  9. }
  10.  
Advertisement
Add Comment
Please, Sign In to add comment