Wordpress - 选择特定链接并将其“重定向”到其他地方

时间:2011-06-06 10:32:47

标签: php wordpress

我正在使用这段代码生成一个菜单:

          <div id="menu">
  <?php $args = array(
    'depth'        => 1,
    'show_date'    => '',
    'date_format'  => get_option('date_format'),
    'child_of'     => 0,
    'exclude'      => '426, 508',
    'include'      => '',
    'title_li'     => __(''),
    'echo'         => 1,
    'authors'      => '',
    'sort_column'  => 'menu_order, post_title',
    'link_before'  => '',
    'link_after'   => '',
    'walker' => '' ); ?>
    <ul><div class="menu-button"><?php wp_list_pages( $args, 'sort_column=menu_order' ); ?></div></ul>
    </div>

它正在生成菜单,但我需要它之一链接转到另一页。

是否可以按ID选择该页面并告诉它转到另一个地址?如果是这样,我该怎么做?

2 个答案:

答案 0 :(得分:1)

我一直在使用Page Links To插件来实现这一目标。

enter image description here

答案 1 :(得分:0)

您应该使用wordpress的新功能,它包括一个菜单系统,允许您从管理面板中创建和管理菜单。您可以添加现有页面,也可以在同一菜单中添加指向其他网站的链接。

了解详情:http://codex.wordpress.org/Function_Reference/wp_nav_menu