Advertisement
phpface

Untitled

Jan 15th, 2023 (edited)
988
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.61 KB | None | 0 0
  1. add_filter( 'streamtube/core/user/dashboard/menu/items', function( $menu_items ){
  2.  
  3.     $menu_items['dashboard']['title'] = esc_html__( 'Video Dashboard', 'streamtube-child' );
  4.  
  5.     if( array_key_exists( 'video', $menu_items ) ){
  6.         $menu_items['video']['title'] = esc_html__( 'Video & Streaming', 'streamtube-child' );
  7.     }
  8.  
  9.     return $menu_items;
  10.  
  11. }, 10, 1 );
  12.  
  13. add_action( 'wp_footer', function(){
  14.     ?>
  15.     <script type="text/javascript">
  16.         jQuery( '.header-user__dropdown .nav-item-dashboard .menu-text' ).html( '<?php esc_html_e( 'Video Dashboard', 'streamtube-child' )?>' );
  17.     </script>
  18.     <?php
  19. } );
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement