添加自定义链接到wordpress站点

时间:2017-03-07 08:39:05

标签: wordpress custom-wordpress-pages

我有一个带有主题的wordpress菜单插件,不幸的是主题是有限的,它只提供菜单,我想添加另一个菜单。我找到了我想在主题中添加链接的位置。我发现主题提供了一个菜单

<li>
    <a href="<?php echo esc_url(cs_users_profile_link($cs_page_id, 'gallery', $uid)); ?>" <?php echo force_balance_tags($data_toogle); ?>><i class="icon-suitcase5"></i> <?php _e('gallery', 'thematic'); ?></a>  
</li>

并重复两次,但如果链接将我带到页面http://foo.bar/?author=1

,则会出现问题

我是否可以修改此链接,以便找到http://foo.bar/playground找到的网页?

1 个答案:

答案 0 :(得分:0)

您可以更改链接的href属性吗?

<li>
    <a href="http://foo.bar/playground"><i class="icon-suitcase5"></i> <?php _e('gallery', 'thematic'); ?></a>  
</li>