Advertisement
verygoodplugins

Untitled

Sep 18th, 2020
1,207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. add_filter( 'wpf_get_setting_available_tags', function( $tags ) {
  2.  
  3.     foreach ( $tags as $i => $tag ) {
  4.         if ( 'Activity' != $tag['category'] ) {
  5.             unset( $tags[ $i ] );
  6.         }
  7.     }
  8.  
  9.     return $tags;
  10.  
  11. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement