How can I show more than 15 themes at a time in the admin menu?

I have a lot of themes in my test wordpress site. I get a little frustrated that I can’t show more than 15 at a time. Picture.png http://img820.imageshack.us/img820/5982/picturef.png In pages and posts you can click “screen options” to choose the number, but it looks like “Themes” has no such option. Picture-1.jpg http://img853.imageshack.us/img853/9582/picture1bbg.jpg Is there another … Read more

Is it safe to post form data via Ajax to the settings api? Am I missing something?

In my WordPress Admin, I have my theme options set-up using the Settings API. I am trying to save the theme options form using Ajax so that the page does not refresh. The only thing i needed to add was this jQuery code : $(“#cgform”).submit(function() { var form_data = $(‘#cgform input’).serializeArray(); $.post( ‘options.php’, form_data ).error(function() … Read more

Theme Options page not showing up in admin menu

I’m currently developing a WordPress theme and would like it to have a preferences pane in order to specify the user’s Google Analytics tracking code for example. Following the instructions I got on the Codex and multiple tutorials, this piece of code placed in the functions.php file should create a submenu of the ‘Appearence’ section … Read more

Cannot update WordPress General Settings Site Title and Tagline

I have a WordPress 4.4.2 installation with no SEO plugins at all. The plugins that I do have activated are WooCommerce, WooCommerce Multilingual, and WPML. I am unable to update the Site Title and Tagline on the General Settings page. If I try to save the changes, the old Site Title and Tagline continue to … Read more

Need help understanding/coding with Settings API

So I did something like below, but I get just (I am expecting a Facebook textbox?) I hope its not too messy. I am new to Settings API … add_action(‘admin_init’, function() { register_setting(‘elem_opts’, ‘elem_opts’, ‘elem_validate_opts’); add_settings_section(‘elem_opts_form’, ‘Elements Theme Options’, ‘elem_opts_form_cb’, ‘elems_opts’); add_settings_field(‘elem_opts_form’, ‘Facebook’, ‘elem_opts_social_fb_cb’, ‘elems_opts’, ‘elem_opts_form’); }); function elem_opts_social_fb_cb() { $opts = get_option(‘elem_opts’); if (empty($opts) … Read more