php 将自定义链接添加到使用wp_nav_menu()函数的菜单的末尾

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将自定义链接添加到使用wp_nav_menu()函数的菜单的末尾相关的知识,希望对你有一定的参考价值。

<?php

/**
* Add a custom link to the end of a specific menu that uses the wp_nav_menu() function
*/
add_filter('wp_nav_menu_items', 'add_admin_link', 10, 2);
function add_admin_link($items, $args){
    if( $args->theme_location == 'footer_menu' ){
        $items .= '<li><a title="Admin" href="'. esc_url( admin_url() ) .'">' . __( 'Admin' ) . '</a></li>';
    }
    return $items;
}

以上是关于php 将自定义链接添加到使用wp_nav_menu()函数的菜单的末尾的主要内容,如果未能解决你的问题,请参考以下文章

php 将自定义列添加到管理表

将自定义类添加到愿望清单顶部链接

php 将自定义字段内容添加到菜单项

php 将自定义字段添加到购物车/结帐

php 将自定义字段添加到ACF对象选择

php 将自定义字段添加到WooCommerce产品变体