Add custom link to WP mobile admin bar
-
Hello,
I’m trying to add a custom button to the WP admin bar. The custom link appears on the desktop view, but is not showing when using the site from mobile. Here is the code I used:function add_circolari_to_adminbar( $wp_admin_bar ) { $args = array( 'id' => 'pagina-circolari-liceo', 'title' => '<span class="ab-icon dashicons dashicons-welcome-write-blog"></span>'.__( 'Circolari', 'some-textdomain' ), 'href' => esc_url( admin_url( 'edit.php?post_type=circolare_liceo' ) ), 'meta' => false ); $wp_admin_bar->add_node( $args ); } add_action( 'admin_bar_menu', 'add_circolari_to_adminbar', 999 );
Thank you for your help
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Add custom link to WP mobile admin bar’ is closed to new replies.