Title: styles_font_menu
Last modified: August 21, 2016

---

# styles_font_menu

 *  [joeco](https://wordpress.org/support/users/joeco/)
 * (@joeco)
 * [11 years, 10 months ago](https://wordpress.org/support/topic/styles_font_menu/)
 * Hi Paul Clark,
    I couldn’t find the proper place to post this. My apologies. 
   I would really appreciate some help with your styles_font_menu plugin. Please
   and thank you.
 * I need to make an array from the styles-font-menu plugin output, (the code below
   doesn’t work) btw~ this bit-o-code does display the (working) font dropdown at
   the top of every admin page. I just need to make a proper variable array that
   will pass into the options framework
 *     ```
       $fonts= array( do_action( 'styles_font_menu' ) );
       ```
   
 * here are the options framework items I want to populate
 *     ```
       $options[] = array(
       		'name' => __('Select a Title Font', 'options_check'),
       		'desc' => __('Find a Google font to apply to titles', 'options_check'),
       		'id' => 'title_font',
       		'type' => 'select',
       		'options' => $fonts);
   
       $options[] = array(
       		'name' => __('Select a Link Font', 'options_check'),
       		'desc' => __('Find a Google font to apply to links', 'options_check'),
       		'id' => 'link_font',
       		'type' => 'select',
       		'options' => $fonts);
   
       $options[] = array(
       		'name' => __('Select a Text Font', 'options_check'),
       		'desc' => __('Find a Google font to apply to text content', 'options_check'),
       		'id' => 'content_font',
       		'type' => 'select',
       		'options' => $fonts);
       ```
   
 * fyi here is a working script example of options select, the variables are set
   here
 *     ```
       $hide_array = array(
       		'yes' => __('Yes', 'options_check'),
       		'no' => __('No', 'options_check')
   
       	);
       ```
   
 * and used here in the framework `
 *     ```
       $options[] = array(
       		'name' => __('Hide RSS Titles', 'options_check'),
       		'desc' => __('Hide RSS Title defaults to  "yes".', 'options_check'),
       		'id' => 'hide_rss',
       		'std' => 'yes',
       		'type' => 'select',
       		'options' => $hide_array);
       ```
   
 * `
 * [https://wordpress.org/plugins/menu-social-icons/](https://wordpress.org/plugins/menu-social-icons/)

The topic ‘styles_font_menu’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/menu-social-icons_ffffff.svg)
 * [Menu Social Icons](https://wordpress.org/plugins/menu-social-icons/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/menu-social-icons/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/menu-social-icons/)
 * [Active Topics](https://wordpress.org/support/plugin/menu-social-icons/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/menu-social-icons/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/menu-social-icons/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [joeco](https://wordpress.org/support/users/joeco/)
 * Last activity: [11 years, 10 months ago](https://wordpress.org/support/topic/styles_font_menu/)
 * Status: not a support question