Tagged Questions
0
votes
1answer
52 views
Function is Missing an Action Hook
I have tied an action into a status change, which works on the backend. However,using a frontend button for updating post status does not trigger the ...
0
votes
1answer
166 views
Redirect back to origin page after using get_delete_post_link()
I need to implement frontend and backend redirection after delete specific post using get_delete_post_link(). Which hook i can use? Any advice would be appreciated.
Something similar to :
<?php ...
0
votes
1answer
79 views
Are there any action like 'init_frontend'
I've found init and init_admin. Are there any action that executes just in the frontend?
Thanks.
-1
votes
1answer
450 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.