我想在main template.index模板中插入可點擊的鏈接,該模板將重定向到Pluto主題頂部的JavaScript按鈕中的一個頁面。文本在那裏,但是當你點擊它時,它不會重定向你,但會打開我不想要的東西。Pluto主題wordpress
這裏是我的代碼:
<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。
你有文字,但你還沒有給出任何鏈接,那麼它如何重定向..?它應該是這樣的。 Click here for more info –