wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren
wp_admin_bar_shortlink_menu › WordPress Function
Seit3.1.0
Veraltetn/v
› wp_admin_bar_shortlink_menu ( $wp_admin_bar )
| Parameter: |
|
| Definiert in: |
|
| Codex: |
Provides a shortlink.
Ähnliche Funktionen: wp_admin_bar_site_menu, wp_admin_bar_customize_menu, wp_admin_bar_edit_menu, wp_admin_bar_search_menu, wp_admin_bar_wp_menu
Quellcode
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 ),
)
);
}