
如果解决XAMPP无法正常运行问题
self_admin_url ( $path = '', $scheme = 'admin' )
self_admin_url: 这是一个WordPress的函数,返回当前管理页面的URL。它通常用于生成自定义管理页面的URL或重定向到一个特定的管理页面: 这个函数有一个可选的参数,就是要附加到URL上的路径。
根据上下文检索当前网站或网络的管理区的URL。
function self_admin_url( $path = '', $scheme = 'admin' ) { if ( is_network_admin() ) { $url = network_admin_url( $path, $scheme ); } elseif ( is_user_admin() ) { $url = user_admin_url( $path, $scheme ); } else { $url = admin_url( $path, $scheme ); } /** * Filters the admin URL for the current site or network depending on context. * * @since 4.9.0 * * @param string $url The complete URL including scheme and path. * @param string $path Path relative to the URL. Blank string if no path is specified. * @param string $scheme The scheme to use. */ return apply_filters( 'self_admin_url', $url, $path, $scheme ); }