I know I’m probably doing something dumb here but I just can’t get this to run. I’m trying to set up a little API for my plugin and to...
I am adding an admin notice via the conventional admin_notice hook in my plugin: function my_admin_notice() { ?> <div class="notice notice-info is-dismissible"> <p><?php _e( 'some message', 'my-text-domain' ); ?></p>...
Our company has put out a WordPress plugin that consumes our content api. Problem is, some of the content goes away. Sometimes for a time, sometimes forever. To be...
I have a simple question about admin notices. I want to display a message like ‘Record updated successfully’, and when user refresh again same page, then this notice should...
So I have a custom post type called members. linked with advanced custom fields and I’ve made it so if I delete a member from the custom post type...
I am having a bit of an issue right now with the VIP coding standards. I am trying to print out an admin notice as follows: add_action( 'admin_notices', function()...
I have a custom taxonomy, ‘genre.’ I’d like my editors, from the ‘Edit Genre’ screen (in the admin), to be able to link to the front end page for...
I have a custom plugin and want it on occasions to fire the kind of notice that appears and disapears in the left corner like this one: I found...
I’ve successfully added admin notices to display on register_activation_hook, and when the plugin updates, but I’m not seeing any way to display admin_notices after the uninstall or deactivation hooks....
My wp_logout_url() is working right from the front end. But when I change the new password from the front end, then, on the change password page, when I click...