Wordpress function.php dosya çalışmıyor içinde PHP koşullu ifadeler

0 Cevap php

I function.php Aşağıdaki PHP açıklama yapmak istiyorum: bir tarih resim #header h1 a 'ın geçmişi boyunca varsa, tutmak, (başka) (kaldırmak) metni girintili ... Değilse Metin (bunu niyetlenmezler).

Ben PHP ile çok aşina değilim ama bu ben ne yaptım:

<?php

// Include functions of Theme Options
require_once(TEMPLATEPATH . '/functions/admin-menu.php');

// If there's an image for the site title, remove it's text
function logo_exists() {
    ?><style type="text/css">
        #header h1 a {
        <?php
        if ( $options['logo'] == NULL ) { ?>
            float: left;
            text-indent: 0;
        <?php } else { ?>
            background: url(<?php echo $options['logo']; ?>) no-repeat scroll 0 0;
            float: left;
            text-indent: -9999px;
            width: 160px;
            height: 80px;
        }
        <?php } ?>
    </style><?php
}

header.php:

    // Initiate Theme Options
    $options = get_option('plugin_options');
var_dump($options['logo'])
    ?>

    <style>
        body {
            background-color: <?php echo $options['color_scheme']; ?>
        }
    </style>
</head>

<body <?php body_class(); ?>>
<div id="wrapper">
    <div id="header">
        <h1>
            <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
        </h1>

(Ben yararlı bilgiler ama plugin_options sadece <style> etiketleri önce başlatıldı ise emin değilim.)

Ben yaptım var_dump ve #options['logo'] görüntüler:

string(63) "http://localhost/wordpress/wp-content/uploads/2010/12/logo3.png" 

(Yani görüntü çalışıyor)

Ama şu anda ben sadece Wordpress site başlığını görmek

Do I have to "activate" or "initiate" the function **logo_exists? or is there another problem?**

(Everything works ok if I don't use the PHP If statements and declaring $options[logo] directly from header.php)

Şimdiden teşekkürler!

0 Cevap