2017-08-06 50 views
1

我無法直接添加短代碼到我的主題。 短碼出現問題。WordPress的短代碼打開和關閉php

有人可以幫助我嗎?

謝謝!

[ihc-level-link id=1] 
<div id="advc-menu" class="search"> 
    <form method="get" id="searchform" action="<?php echo esc_url(home_url()); ?>"> 
     <input type="text" placeholder="Search..." name="s" id="s" value="<?php echo dt_clear($_GET['s']); ?>" autocomplete="off"> 
     <button class="search-button" type="submit"><span class="icon-search2"></span></button> 
    </form> 
</div> 
[/ihc-level-link] 

回答

3

使用此代碼:

<?php 
    $html = '<div id="advc-menu" class="search"> 
    <form method="get" id="searchform" action="'. esc_url(home_url()) .'"> 
     <input type="text" placeholder="Search..." name="s" id="s" value="'. dt_clear($_GET['s']) .'" autocomplete="off"> 
     <button class="search-button" type="submit"><span class="icon-search2"></span></button> 
    </form> 
    </div>'; 
    echo do_shortcode("[ihc-level-link id=1] ". $html ." [/ihc-level-link id=1]"); 
?> 
+0

非常感謝您! –