'facebook_url') ); add_settings_field( 'youtube_url', 'URL YouTube', 'carhop_field_youtube_callback', 'carhop_options', 'carhop_section_social', array('label_for' => 'youtube_url') ); } add_action('admin_init', 'carhop_settings_init'); // Callback pour la section réseaux sociaux function carhop_section_social_callback() { echo '
Configurez les liens vers vos réseaux sociaux.
'; } function carhop_field_facebook_callback($args) { $options = get_option('carhop_options'); $value = isset($options[$args['label_for']]) ? $options[$args['label_for']] : ''; ?>Dans vos templates :
$options = get_option('carhop_options');
echo $options['facebook_url']; // URL Facebook
echo $options['youtube_url']; // URL YouTube