wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_admin_bar_shortlink_menu › WordPress Function
Since3.1.0
Deprecatedn/a
› wp_admin_bar_shortlink_menu ( $wp_admin_bar )
Parameters: |
|
Defined at: |
|
Codex: |
Provides a shortlink.
Source
function wp_admin_bar_shortlink_menu( $wp_admin_bar ) { $short = wp_get_shortlink( 0, 'query' ); $id = 'get-shortlink'; if ( empty( $short ) ) { return; } $html = '<input class="shortlink-input" type="text" readonly="readonly" value="' . esc_attr( $short ) . '" aria-label="' . __( 'Shortlink' ) . '" />'; $wp_admin_bar->add_node( array( 'id' => $id, 'title' => __( 'Shortlink' ), 'href' => $short, 'meta' => array( 'html' => $html ), ) ); }