呼應它在前端我怎樣才能從這種陣列位於我的主題的functions.php如何從一個數組中獲得價值,並在WordPress
$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'
);
,並呼應它的值(STD)我header.php 試過這樣的行爲並沒有奏效。
<li><a href="#" class="social-google">
<?php $google = get_settings['google']['std']; echo $google;?></a></li>
@ user2092317我得到這個錯誤 致命錯誤:使用$這個時候不是在對象上下文中的header.php – Adrian
什麼是你的WordPress的版本? –
@ChinnuR 3.7.1 latest – Adrian