English 中文(简体)
如何在 wordpress 主题的不同页面上显示不同的标识?
原标题:How to show different logo on different pages in wordpress theme?

这是我目前使用的Wordpress 主题上显示页眉部分的代码。

<div id="site-branding" class="clearfix">
        <?php
        $logo = isset($options[ logo ])? $options[ logo ]:   ;
        if ($logo == ""){
            $hidetitle = $options[ hide_title ];
            if ($hidetitle == "No") {

                if(!is_home() || !is_front_page()) { ?>
                    <div class="site-title"><a href="<?php echo esc_url( home_url(  /  ) ); ?>" title="<?php echo esc_attr( get_bloginfo(  name ,  display  ) ); ?>"><?php bloginfo( name ); ?></a></div>
                    <div class="site-description"><?php bloginfo( description ); ?></div>
                <?php } else { ?>
                    <h1 class="site-title"><a href="<?php echo esc_url( home_url(  /  ) ); ?>" title="<?php echo esc_attr( get_bloginfo(  name ,  display  ) ); ?>"><?php bloginfo( name ); ?></a></h1>
                    <div class="site-description"><?php bloginfo( description ); ?></div>

            <?php } }
        } else {
            echo  <div class="site-logo"><a href=" . esc_url( home_url(  /  ) ) . "> ;
            echo  <img title=" . get_bloginfo( name ) . " src="  . $logo . " /> ;
            echo  </a></div> ;
        } ?>
    </div><!-- end #site-branding -->

此代码的第一部分检查标识的存在。 如果标识不存在, 它将只显示主题的名称和描述, 只要不在主题选项中隐藏它。 它会将名称和描述在主页/ 前页上略为不同, 而在其他页面上则使用不同的样式。 但是, 如果存在标识, 它将会在所有页面上显示标识 。

现在我想在Front/Home页面上以不同的方式(与 CSS) 刻画“ 坚固的LOGO

我试图在上面代码的第二部分使用其他语句,但未能取得预期的结果。

请建议我如何妥善地做到这一点。

UPDATE: Because I can t post the answer to my own question, I am posting here. Well, I used this code after removing some PHP closing elements and it worked like charm. I am posting it here again just to make it sure that there is no error.

if(is_home() || is_front_page()) {
        echo  <h1 class="site-logo"><a href=" . esc_url( home_url(  /  ) ) . "> ;
        echo  <img calss="mylogo1" title=" . get_bloginfo( name ) . " src="  . $logo . " /> ;
        echo  </a></h1> ;
             } else {
        echo  <div class="site-logo"><a href=" . esc_url( home_url(  /  ) ) . "> ;
        echo  <img calss="mylogo2" title=" . get_bloginfo( name ) . " src="  . $logo . " /> ;
        echo  </a></div> ;
        } ?>
最佳回答
if(!is_home() || !is_front_page()) { ?>
    echo  <div class="site-logo"><a href=" . esc_url( home_url(  /  ) ) . "> ;
    echo  <img calss="mylogo1" title=" . get_bloginfo( name ) . " src="  . $logo . " /> ;
    echo  </a></div> ;
<?php } else { ?>
    echo  <div class="site-logo"><a href=" . esc_url( home_url(  /  ) ) . "> ;
    echo  <img calss="mylogo2" title=" . get_bloginfo( name ) . " src="  . $logo . " /> ;
    echo  </a></div> ;
<?php } ?>

我们如同你们以前那样,为你们规定不同的等级(即:mylogo1/mylogo2),以便你们了解自己的情况。

问题回答

暂无回答




相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签