我如何从位于我的主题functions.php中的这个数组中获取值(std)
$this->settings['google'] = array(
'title' => __( 'Google' ),
'desc' => __( 'This is a description for the text input.' ),
'std' => 'https://www.google.com/+profile_name',
'type' => 'text',
'section' => 'social'
);
并在我的 header.php 中回显它像这样尝试过,但没有奏效。
<li><a href="#" class="social-google">
<?php $google = get_settings['google']['std']; echo $google;?></a></li>