wpseek.com
A WordPress-centric search engine for devs and theme authors
wp_link_manager_disabled_message is private and should not be used in themes or plugins directly.
wp_link_manager_disabled_message › WordPress Function
Since3.5.0
Deprecatedn/a
› wp_link_manager_disabled_message ( No parameters )
Access: |
|
Defined at: |
|
Codex: |
Outputs the 'disabled' message for the WordPress Link Manager.
Source
function wp_link_manager_disabled_message() { global $pagenow; if ( ! in_array( $pagenow, array( 'link-manager.php', 'link-add.php', 'link.php' ), true ) ) { return; } add_filter( 'pre_option_link_manager_enabled', '__return_true', 100 ); $really_can_manage_links = current_user_can( 'manage_links' ); remove_filter( 'pre_option_link_manager_enabled', '__return_true', 100 ); if ( $really_can_manage_links && current_user_can( 'install_plugins' ) ) { $link = network_admin_url( 'plugin-install.php?tab=search&s=Link+Manager' ); /* translators: %s: URL to install the Link Manager plugin. */ wp_die( sprintf( __( 'If you are looking to use the link manager, please install the <a href="%s">Link Manager</a> plugin.' ), $link ) ); } wp_die( __( 'Sorry, you are not allowed to edit the links for this site.' ) ); }