如何仅在一个特定页面上的标题中显示按钮

发布于 2025-01-12 04:53:18 字数 452 浏览 0 评论 0原文

我在标题中添加了一个“立即应用”按钮,但我只想在注册的一页上显示此按钮。我不希望此按钮出现在网站的其他页面上。当用户进入注册页面时,此按钮应自动出现在标题中。那么我该怎么做呢? 下面是我用来显示按钮的代码,但该按钮显示在页面上而不是标题部分:

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 技术交流群。

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

发布评论

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

评论(3

如何视而不见 2025-01-19 04:53:18

您可以通过使用 jQuery 瞄准 url 路径来隐藏您不想要的页面中的按钮

jQuery(function ($){
        var pathname = window.location.pathname;
        if (pathname == "/page2/"){
           $(".your_button_class").css("display","none");
          }
    })

You can hide the button in the pages you don't want it by aiming the url path with jQuery

jQuery(function ($){
        var pathname = window.location.pathname;
        if (pathname == "/page2/"){
           $(".your_button_class").css("display","none");
          }
    })

暮凉 2025-01-19 04:53:18

找到注册页面的id。假设是1675,编写以下CSS:

.header-menu-btn {display: none !important}
.page-id-1675 .header-menu-btn {display: inline !important}

Find the id of register page. Suppose it is 1675, write following CSS:

.header-menu-btn {display: none !important}
.page-id-1675 .header-menu-btn {display: inline !important}
情仇皆在手 2025-01-19 04:53:18

您可以使用 strpos 检查文本是否包含。

if ( strpos($current_url, 'umacollege.geekss.com.au/register') == true ) {}

如果您使用的是 WordPress,那么最好的选择是使用 is_page() 函数。

if ( is_page( 'register') ) {} // slug

或者

if ( is_page( 1675 ) ) {} // page id

You can use strpos to check the text is contains or not.

if ( strpos($current_url, 'umacollege.geekss.com.au/register') == true ) {}

If you are using wordpress then best option is to use is_page() function.

if ( is_page( 'register') ) {} // slug

or

if ( is_page( 1675 ) ) {} // page id
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文