WordPress blocking polling request when signed into Admin

Hence, ajax calls that must be triggered from within the wp admin panel should be registered via the wp_ajax_{$action} hook, and ajax calls that are triggered from the frontend and have totally nothing to do with wp-admin, but are like simple REST interactions of your platform users with your platform server, should be registered via … Read more

not able to add thumbnail custom field in dropdown

I just tested this by adding the customfield ‘thumbnail’ to my post and it showed up in the dropdown. I’m using WordPress 3.2 (Multisite). What version are you using? Have you tried it without any plugins with the default theme? Does it work? As for your second question: WordPress has no global interface for editting … Read more

What does WordPress mean by they have full rights to content [closed]

This is pretty off-topic — this site is meant for WordPress programming questions — but here’s an answer anyways. If you’re referring to WordPress.com’s Terms of Service, what you are granting WordPress (actually Automattic, WordPress’s parent corporation) is as follows: By submitting Content to Automattic for inclusion on your Website, you grant Automattic a world-wide, … Read more

theme injecting css into wp-admin

The problem is that you are enqueue the CSS file of your theme outside any of the recommended actions. If you want it to be added only in frontend, you should use wp_enqueue_scripts action: add_action( ‘wp_enqueue_scripts’, function() { wp_register_style( ‘mainstyle’, get_stylesheet_uri()); wp_enqueue_style( ‘mainstyle’, get_stylesheet_uri()); });

Screen Options drop-down does not show

Apparently it was the Social Media Widget plugin that caused my issue. In general, to troubleshoot such an issue with the admin page: Disable all plugins. Check that the problem has been solved, i.e., it is a plugin that causes this. Enable one plugin at a time and test, to find the culprit. Disable that … Read more

All of my WordPress sites have Bold Open Sans

I solved the issue. If anyone else has this issue here is the solution. – It ended up being a Creative Cloud problem. – Open up the creative cloud click assests and navigate to fonts. – From there you can enable and disable fonts. – Disabled the Open Sans and it fixed all my dashboards.