network_admin_url [ WordPress Function ]
network_admin_url ( $path = '', $scheme = 'admin' )
| Parameters: |
|
| Returns: |
|
| Defined at: |
|
Soorgelijke functies: get_admin_url, network_home_url, network_site_url, is_network_admin, user_admin_url
Retrieve the url to the admin area for the network.
Source
<?php
function network_admin_url( $path = '', $scheme = 'admin' ) {
if ( ! is_multisite() )
return admin_url( $path, $scheme );
$url = network_site_url('wp-admin/network/', $scheme);
if ( !empty($path) && is_string($path) && strpos($path, '..') === false )
$url .= ltrim($path, '/');
return apply_filters('network_admin_url', $url, $path);
}
?>
Examples [ wp-snippets.com ]
Top Google zoekresultaten
- Function Reference/network admin url « WordPress Codex
The network_admin_url template tag retrieves the url to the Network_Admin area for the current site with the appropriate protocol, 'https' if is_ssl() and 'http' ...
codex.wordpress.org - WordPress › Support » Wrong network admin URL
Member Posted 1 year ago #. When trying to go to the Network Admin using the link in the upper right of the admin, the URL is wrong. The link it gives me is: ...
wordpress.org - network_admin_url (WordPress Function) - WPSeek.com
WordPress lookup for network_admin_url, a WordPress Function. wpseek.com is a WordPress-centric search tool for developers and theme authors.
wpseek.com - network_admin_url Wordpress hook details -- Adam Brown, BYU ...
WordPress version history for network_admin_url ... We find related hooks using word stems. network_admin_url has 3 significant word stem(s): network , admin ...
adambrown.info