高级 WordPress php 帮助

发布于 2024-11-05 07:02:49 字数 325 浏览 0 评论 0原文

我试图包含这个滑出信息面板 我在我的 WordPress 网站中创建了它。我尝试在 page.php 文件和 index.php 文件中使用,但没有成功。我的网站是一个单页网站,我相信我在解决这个问题时遇到了问题。包含文件实际上是一个完整的 html 页面,所以我对如何处理这个问题感到困惑。请帮助......建议

I am trying to include this sliding out info panel
that i created into my wordpress site. I have tried using in the page.php file and the index.php file and have had no success. My site is a single page site and i believe i am having issues figuring this out because of that. The include file is actually a whole html page so im getting stumped on how to go about this. Please Help......Sugestions

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

番薯 2024-11-12 07:02:49

您不需要整个 html 页面。您只需要这部分(按钮和 div)。将它放在 page.php 的 body 标记中的某个位置,因为它位于 css 中,所以位置并不重要:

<div class="panel"> 
    <h3>Email Subscription</h3> 
    <p>Enter your email address below to receive promotional products and exclussive Elite givaways!</p> 

  <p><input name="" type="text" value="enter your email" /><input name="" type="submit" /></p> 
</div> 
<a class="trigger" href="#">infos</a> 

然后确保 header.php 的 head 标记中有这个 javacript:

<script type="text/javascript"> 
$(document).ready(function(){
    $(".trigger").click(function(){
        $(".panel").toggle("fast");
        $(this).toggleClass("active");
        return false;
    });
});
</script> 

然后显然还需要 jquery js header.php 中的 head 标签:

<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js"></script> 

header.php 中 head 标签中触发器和框的 css:

<link rel="stylesheet" href="style2.css" type="text/css" media="screen" /> 

You don't need the whole html page. You just need this part (the button and the div). Put it in the page.php somewhere in the body tag, doesn't really matter where since it's positioned in the css:

<div class="panel"> 
    <h3>Email Subscription</h3> 
    <p>Enter your email address below to receive promotional products and exclussive Elite givaways!</p> 

  <p><input name="" type="text" value="enter your email" /><input name="" type="submit" /></p> 
</div> 
<a class="trigger" href="#">infos</a> 

Then make sure you have this javacript in the head tag in header.php:

<script type="text/javascript"> 
$(document).ready(function(){
    $(".trigger").click(function(){
        $(".panel").toggle("fast");
        $(this).toggleClass("active");
        return false;
    });
});
</script> 

Then also obviously need the jquery js in the head tag in header.php:

<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js"></script> 

And the css for the trigger and box in the head tag in header.php:

<link rel="stylesheet" href="style2.css" type="text/css" media="screen" /> 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文