-2

我知道这是可能的,但我就是无法让它发挥作用。我知道我被 ""`s 或 ; 或者 )

所以,这里是代码:

function my_login_head() { 
     echo "
    <style>
    body.login #login h1 a {"; 
    <?php echo
         "background: url("myfunction('image', get_template_directory_uri()                       ."/images/image.png");?> ") no-repeat scroll center top transparent; 
    height: 90px;
    width: 100px;
    }
    </style>
    "; ?>

我无法正确地标点符号。我只想执行'myfunction',并获得正确的url属性。

4

5 回答 5

3

尝试这个:

<?php
function my_login_head() {   
?>  
<style>  
body.login #login h1 a {
  background: url("<?php echo myfunction('image',get_template_directory_uri().'/images/image.png'); ?>") no-repeat scroll center top transparent; 
  height: 90px;
  width: 100px;
}
</style>
<?php } ?>
于 2012-11-26T11:20:03.060 回答
1
<?php
function my_login_head() 
{
    ?>  
    <style type="text/css">  
    #login h1 a {
      background: url("<?php echo myfunction('image',get_template_directory_uri().'/images/image.png'); ?>") no-repeat scroll center top transparent; 
      height: 90px;
      width: 100px;
    }
    </style>

<?php 
} 
?>
于 2012-11-26T11:52:38.497 回答
0
function my_login_head() { 
     echo "
    <style>
    body.login #login h1 a {
        background: url(\"myfunction('image', " . get_template_directory_uri()   
        ."/images/image.png") . "\") no-repeat scroll center top transparent; 
    height: 90px;
    width: 100px;
    }
    </style>
    ";

仍然是意大利面的混乱。使用模板

于 2012-11-26T11:12:17.307 回答
0
function my_login_head() { 
     echo "
    <style>
    body.login #login h1 a {"; 
    echo "background: url(".myfunction('image', get_template_directory_uri()."/images/image.png").") no-repeat scroll center top transparent; 
    height: 90px;
    width: 100px;
    }
    </style>
    ";
于 2012-11-26T11:13:51.473 回答
0
<?php function my_login_head() { 
     echo "
    <style>
    body.login #login h1 a {"; 
     echo
         "background: url(";myfunction('image', get_template_directory_uri()."/images/image.png"); ") no-repeat scroll center top transparent; 
    height: 90px;
    width: 100px;"

    }
    echo "</style> "; }
    ?>
于 2012-11-26T11:14:34.030 回答