13

我用这个代码做了一个菜单项。菜单项显示,但简码输出不存在。有没有我可以添加的东西或可以做到这一点的不同方法。我还添加了希望这可能会有所帮助。

add_filter('wp_nav_items', 'do_shortcode', 7);

或者也许有人知道这是不可能的并且可以告诉我。

/* Nav Menu */
function add_profile_link_to_nav(){ 
 if ( is_user_logged_in() ) { ?> 

<ul> 
  <li class="menu-item"id="one"> <a href="http://example.com/members/">All  Members</a>
  <ul class="sub-menu"> 
      <li class="menu-item"><?php echo custom_execute_shortcode(); ?> </li>
  </ul> 
 </li>
</ul>    <!--end menu--->
<?php } 
}
add_action( "wp_nav_items","add_profile_link_to_nav" );

function custom_execute_shortcode() {
$myfunction= '[my shortcode"]';
$myfunction_parsed = do_shortcode($myfunction);
return $myfunction_parsed;
}

谢谢

4

3 回答 3

30

@Tim 此代码将起作用

把它放在functions.php文件中

add_filter('wp_nav_menu_items', 'do_shortcode');
于 2013-07-13T11:10:58.570 回答
16

您不能直接在菜单页面的菜单 URL 中使用简码,因为括号会被去掉。但是你可以使用这样的占位符:#profile_link#.

使用以下代码functions.php,您可以使用 URL 创建自定义菜单项#profile_link#,并将其替换为您的简码。

/**
 * Filters all menu item URLs for a #placeholder#.
 *
 * @param WP_Post[] $menu_items All of the nave menu items, sorted for display.
 *
 * @return WP_Post[] The menu items with any placeholders properly filled in.
 */
function my_dynamic_menu_items( $menu_items ) {

    // A list of placeholders to replace.
    // You can add more placeholders to the list as needed.
    $placeholders = array(
        '#profile_link#' => array(
            'shortcode' => 'my_shortcode',
            'atts' => array(), // Shortcode attributes.
            'content' => '', // Content for the shortcode.
        ),
    );

    foreach ( $menu_items as $menu_item ) {

        if ( isset( $placeholders[ $menu_item->url ] ) ) {

            global $shortcode_tags;

            $placeholder = $placeholders[ $menu_item->url ];

            if ( isset( $shortcode_tags[ $placeholder['shortcode'] ] ) ) {

                $menu_item->url = call_user_func( 
                    $shortcode_tags[ $placeholder['shortcode'] ]
                    , $placeholder['atts']
                    , $placeholder['content']
                    , $placeholder['shortcode']
                );
            }
        }
    }

    return $menu_items;
}
add_filter( 'wp_nav_menu_objects', 'my_dynamic_menu_items' );

您只需要'shortcode'$placeholders数组中设置,并且可以选择'atts'and 'content'

例如,如果您的简码是这样的:

[example id="5" other="test"]Shortcode content[/example]

你会更新:

'#placeholder#' => array(
    'shortcode' => 'example';
    'atts' => array( 'id' => '5', 'other' => 'test' );
    'content' => 'Shortcode content';
),

请注意,我不使用do_shortcode()它是因为它是一项资源密集型功能,并且在这种情况下不是适合该工作的工具。

于 2013-11-07T21:43:35.670 回答
1

在菜单页面上启用描述,粘贴到您的简码链接的描述文本区域,在functions.php中添加下一个代码:

add_filter('walker_nav_menu_start_el', function($item_output, $item) {
    if (!is_object($item) || !isset($item->object)) {
        return $item_output;
    }

    if ($item->ID === 829) {
        $item_output = do_shortcode($item->description);
    }

    return $item_output;
}, 20, 2);
于 2020-07-20T13:10:01.177 回答