冥王星主题wordpress

时间:2013-10-04 09:08:56

标签: javascript php jquery html wordpress

我想在主template.index模板中插入一个可点击链接,该模板将重定向到Pluto主题顶部JavaScript按钮中的一个页面。文本在那里,但当你点击它时,它不会重定向你,但会打开我不想要的东西。

这是我的代码:

<a href="javascript:;" data-rel="#homepage_wrapper" id="expand_button" <?php
    if(empty($pp_display_hide_homepage)) {
        echo 'style="display:block;"';
    }
?>>
    <p style="color: #402D1F; font-weight: bold; font-size: 20px; ">
        <img src="<?php echo get_stylesheet_directory_uri(); ?>/images/icon_arrow_right.png" alt="" id="arrow_picture"/>
        Click here for more info
    </p>
</a>

点击,有关更多信息,我希望它是一个可点击的链接,将我重定向到wordpress中的另一个页面。

1 个答案:

答案 0 :(得分:0)

普通的Html链接如下所示:

<a href="yourUrl">link text</a>

您的链接中似乎有一个图片代码,因此它应如下所示:

<a href="yourUrl"><img src="/images/icon_arrow_right.png" alt="" id="arrow_picture" />link text</a>