Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter( 'streamtube/core/user/dashboard/menu/items', function( $menu_items ){
- $menu_items['dashboard']['title'] = esc_html__( 'Video Dashboard', 'streamtube-child' );
- if( array_key_exists( 'video', $menu_items ) ){
- $menu_items['video']['title'] = esc_html__( 'Video & Streaming', 'streamtube-child' );
- }
- return $menu_items;
- }, 10, 1 );
- add_action( 'wp_footer', function(){
- ?>
- <script type="text/javascript">
- jQuery( '.header-user__dropdown .nav-item-dashboard .menu-text' ).html( '<?php esc_html_e( 'Video Dashboard', 'streamtube-child' )?>' );
- </script>
- <?php
- } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement