テーマの 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>