How can I add an image upload field directly to a custom write panel?
I’ve added a new page under “Pages” in the wordpress admin, and added several custom fields. I’d also like to be able to … Read more
I’ve added a new page under “Pages” in the wordpress admin, and added several custom fields. I’d also like to be able to … Read more
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, … Read more
Link your WPSE-Plugins If you answered a question and made a plugin out of your code, than this is your place to share … Read more
My problem is when on the main plugin file I include a PHP file something like this: include(WP_PLUGIN_URL . ‘/wordpress-group-buying/ipn/paypal-ipn.php’); // or include_once(WP_PLUGIN_URL … Read more
Has anyone used autoloading and/or PHP namespaces within a plugin or theme? Thoughts on using them? Any harm? Pitfalls? Note: namespaces are PHP … Read more
Is there an easy to understand scheme to decide what kind of code belongs to a plugin or the theme’s functions.php? There are … Read more
I’ve created a plugin, and of course being me, I wanted to go with a nice OO approach. Now what I’ve been doing … Read more
I’m making a WordPress plugin. What are typical things I should include in the uninstall feature? For example, should I delete any tables … Read more
The add_menu_page documentation says to pass the menu title as the second parameter: add_menu_page(‘Page Title’, ‘Menu Title’, …); When adding more pages later … Read more
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, … Read more