Tagged Questions
0
votes
1answer
177 views
Admin post list - adding an option to the date filter dropdown
I've been asked if I can add an option for "Today" and "Yesterday" to the date filter dropdown at the top of the post list in the WordPress admin view. (This is the list that shows recent ...
0
votes
1answer
105 views
How to get the password and username of the add new user form (admin back end) in wordpress
I am trying to get the username and password that entered by the wordpress admin in the add new user screen to use those into creating a webmail account using cpanel api.
How to do that? is there is ...
1
vote
1answer
52 views
How to check if upload window came from the featured image link?
I need to verify if the media-upload screen came from a click on the "feature image link" on the admin screen. How can i do it?
I've already change the way the uploader works , but I need to check ...
1
vote
0answers
67 views
Can I hook into wp_update_core outside of the admin?
I'm trying to bring some of the admin functionality to a custom front end in WordPress. Questions of security and pragmatism of this aside, is there an available hook to trigger wp_update_core outside ...
0
votes
1answer
328 views
get_current_screen and the WP_Screen class
So I'm trying to figure out how to properly use the get_current_screen. For learning sake, I'm just popping an alert for a specific page. I've looked at ...
0
votes
1answer
71 views
Display Plugin Panels Outside of Admin Areas
I'm trying to find a way to display the work area content of different plugins on pages/posts/areas aside from the admin backend.
For example, how would I display the options panel for a certain ...
-1
votes
1answer
457 views
plugin: 'init' hook, check if we're not in admin
I've tried this inside of my plugin ('init' hook) but it doesn't work:
if(is_front_page() || is_singular() || is_archive()) { ... }
How could I check it using init hook?
Thanks.
6
votes
3answers
1k views
Making Custom Fields Standard in the Admin UI
I've added a few different custom_post_types to my Wordpress 3 installation. They are all a bit different from eachother, and should store unique information in custom_fields. But while one may store ...