我有一个带有主题的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
找到的网页?
答案 0 :(得分:0)
您可以更改链接的href属性吗?
<li>
<a href="http://foo.bar/playground"><i class="icon-suitcase5"></i> <?php _e('gallery', 'thematic'); ?></a>
</li>