Whilsts@Shaon的答案完全正确,我认为你真的不应该把配置设置作为全局变量,而应该使用常量。
/* Constants are in the global scope, but can only be defined once. */
define( \'FEEDBURNER_USERNAME\', \'my_username\' );
define( \'FEEDBURNER_PASSWORD\', \'my_password\' );
如果变量需要是动态的(例如,如果它是数据库中的一个选项),请使用返回它的函数:
function get_feedburner_config( $option = null )
{
$config = get_option( \'feedburner\' );
$config = wp_parse_args( $config, array(
\'username\' => \'default\',
\'password\' => \'default\'
));
if ( $option )
return isset( $config[ $option ] ) ? $config[ $option ] : \'\';
return $config;
}