Search
 
SCRIPT & CODE EXAMPLE
 

PHP

wordpress admin url

<?php
  echo '<a href="' . esc_url( admin_url('nav-menus.php') ) . '">' . esc_html( 'Add Menu' ) . '</a>';
?>
Comment

get admin url wordpress

function get_admin_url( $blog_id = null, $path = '', $scheme = 'admin' ) {
    $url = get_site_url( $blog_id, 'wp-admin/', $scheme );
 
    if ( $path && is_string( $path ) ) {
        $url .= ltrim( $path, '/' );
    }
 
    /**
     * Filters the admin area URL.
     *
     * @since 2.8.0
     * @since 5.8.0 The `$scheme` parameter was added.
     *
     * @param string      $url     The complete admin area URL including scheme and path.
     * @param string      $path    Path relative to the admin area URL. Blank string if no path is specified.
     * @param int|null    $blog_id Site ID, or null for the current site.
     * @param string|null $scheme  The scheme to use. Accepts 'http', 'https',
     *                             'admin', or null. Default 'admin', which obeys force_ssl_admin() and is_ssl().
     */
    return apply_filters( 'admin_url', $url, $path, $blog_id, $scheme );
}
Comment

PREVIOUS NEXT
Code Example
Php :: isset laravel 
Php :: laravel login shows 404 
Php :: php header not working 
Php :: laravel get second last record 
Php :: laravel queue timeout 
Php :: laravel validation required if 
Php :: how to send data from html to php 
Php :: faker instance in tinker 
Php :: php pdo error 500 
Php :: get php ini config from terminal 
Php :: mysql escape apostrophe 
Php :: strrev php 
Php :: laravel eloquent duplicate record 
Php :: array join pgp 
Php :: jquery is less than or equal to 
Php :: insert into laravel 8 
Php :: laravel copy image with new name 
Php :: laravel 9 route group 
Php :: laravel array in lang 
Php :: contact form 7 in page template 
Php :: not equal in laravel blade 
Php :: bootstrap is not defined in laravel 
Php :: PHP strrpos — Find the position of the last occurrence of a substring in a string 
Php :: composer install phpWord 
Php :: how do i know if file is empty in php 
Php :: php array current 
Php :: string length laravel validation 
Php :: laravel drop column softdeletes 
Php :: php number multiple of 
Php :: check php-fpm version ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
7+5 =