如何仅在一个特定页面上的标题中显示按钮
我在标题中添加了一个“立即应用”按钮,但我只想在注册的一页上显示此按钮。我不希望此按钮出现在网站的其他页面上。当用户进入注册页面时,此按钮应自动出现在标题中。那么我该怎么做呢? 下面是我用来显示按钮的代码,但该按钮显示在页面上而不是标题部分:
if ( $current_url == 'umacollege.geekss.com.au/register' ) {
echo '<div class="entry-banner">
<div class="container">
<div class="entry-banner-content">
<h1><button type="button">Click Me!</button></h1>
</div></div></div>';
}
I have added a button of apply now it my header but I just want to display this button on only one page which is register. I do not want this button to appear on other pages of website. When user go to the register page this button should automatically appear in header. So how can I do it?
Below is the code which I used to display the button but this button is displaying on the page not in the header section:
if ( $current_url == 'umacollege.geekss.com.au/register' ) {
echo '<div class="entry-banner">
<div class="container">
<div class="entry-banner-content">
<h1><button type="button">Click Me!</button></h1>
</div></div></div>';
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过使用 jQuery 瞄准 url 路径来隐藏您不想要的页面中的按钮
You can hide the button in the pages you don't want it by aiming the url path with jQuery
找到注册页面的id。假设是1675,编写以下CSS:
Find the id of register page. Suppose it is 1675, write following CSS:
您可以使用 strpos 检查文本是否包含。
如果您使用的是 WordPress,那么最好的选择是使用 is_page() 函数。
或者
You can use strpos to check the text is contains or not.
If you are using wordpress then best option is to use is_page() function.
or