wordpress-hook Questions
5
Solved
I want to send an email any time a new post is FIRST published (not when it is edited)
I tried:
add_action('publish_post', 'postPublished');
But postPublished is ALSO called when I update an a...
Cowans asked 22/11, 2016 at 14:42
6
Solved
I run my own web server for development and, on it, I installed a WordPress instance. When I try to add plugins to this instance from the admin interface, WordPress asks for FTP access.
I don't u...
Explicative asked 16/8, 2010 at 11:44
8
Solved
I have a custom post type crm, and i need to send a mail after each crm saved or updated. i user cmb2 for some custom meta like subject, to users etc. I know the save_post hook fires after post sav...
Jaimiejain asked 13/6, 2017 at 10:21
4
Solved
I've been trying for days now to take users who have just registered to my WordPress site and automatically log them in and then redirect them to a URL of my choice.
By default, WordPress sends you...
Siamese asked 13/11, 2013 at 9:21
2
I am new to wordpress. I am trying to call function myprefix_edit_user_cb() to get the edit form after user clicks on edit.
function getdata()
{
$blogusers = get_users();
foreach ( $blogusers ...
Aptitude asked 1/9, 2017 at 3:58
2
Solved
I have Wordpress with WooCommerce installed and I am trying to use this code to login an admin user:
if ( !is_user_logged_in() ) {
$user = get_userdatabylogin( $username ); // get_user_by('login'...
Tunicate asked 12/5, 2017 at 9:33
1
Solved
I want to change the list of users in the Author select dropdown on the edit post page for a custom post type. Is there a filter hook I can use for this? I haven't been able to find any information...
Biocellate asked 16/5, 2016 at 5:40
1
Solved
Is it possible to hook a function when a custom taxonomy term (which is not known beforehand), (preferably custom taxonomy child term) is edited/saved, just like the way we can hook into save_post ...
Sialoid asked 8/9, 2015 at 12:50
1
How do you change/rename the text of post statuses in the top of the WP custom post type page
All | Published | Scheduled | Draft
Andizhan asked 3/4, 2013 at 22:13
1
© 2022 - 2024 — McMap. All rights reserved.