1

以下のコードを使用しましたが、

<?php
 $this->settings['copyright'] = array(
        'title'   => __( 'Copyright' ),
        'desc'    => __( 'Please enter the copyright text you wish to appear in the footer left.' ),
        'std'     => '©2012-'<?php echo date("Y"); ?> 'here i write some more', //here i am trying to echo it, but i get the error below
        'type'    => 'text',
        'section' => 'general'
    );
?>

以下のようなエラーが出ました。

Parse error: syntax error, unexpected '?'
4

1 に答える 1

3

これを試して、

'©2012-'<?php echo date("Y"); ?> 'here i write some more',

する必要があります

'©2012-'.date("Y").'here i write some more',

        <?php
         $this->settings['copyright'] = array(
                'title'   => __( 'Copyright' ),
                'desc'    => __( 'Please enter the copyright text you wish to appear in the footer left.' ),
                'std'     => '©2012-'.date("Y").'here i write some more', //here i am trying to echo it, but i get the error below
                'type'    => 'text',
                'section' => 'general'
            );
        ?>
于 2013-11-09T11:21:37.003 に答える