Arrien
Support threads created in the last 30 days: 0
Favorite Forum Topics
This user has no favorite topics.
Forum Topics Created
Status | Topic | Supporter | Voices | Posts | Freshness |
---|---|---|---|---|---|
Display number of total users, number of active users
Started by: Arrien in: Toolset Professional Support |
|
2 | 6 | 3 years, 4 months ago | |
Save username as user's First and Last name and make fields required
Started by: Arrien in: Toolset Professional Support |
|
2 | 13 | 3 years, 6 months ago | |
Understanding how checkmark data are saved
Started by: Arrien in: Toolset Professional Support |
|
3 | 8 | 4 years, 6 months ago | |
One user profile page, two user edit forms
Started by: Arrien in: Toolset Professional Support |
|
2 | 8 | 4 years, 10 months ago | |
Saving user first name/last name as post title + post date/time
1
2
Started by: Arrien
in: Toolset Professional Support
Problem: I would like to use the post author's name with post date and time to automatically set a new post title. Solution: Use the save_post hook provided by WordPress to automate the post title. Get author information using get_the_author_meta, concatenate the title string, and use wp_update_post to update the post title. Example code: function md_checkout_title( $post_id ) { if( 'material-check-out' == get_post_type($post_id) ) { remove_action( 'save_post', 'md_checkout_title' ); $date = date( 'Y-m-d H:i:s', time() ); $author_id = get_post_field( 'post_author', $post_id ); $first_name = get_the_author_meta( 'first_name', $author_id ); $updated_data = array( 'ID' => $post_id, 'post_title' => $first_name . $date ); wp_update_post( $updated_data ); add_action( 'save_post', 'md_checkout_title' ); } else { return; } } add_action( 'save_post', 'md_checkout_title' ); Relevant Documentation: |
|
3 | 24 | 5 years, 2 months ago | |
Importing post_id to user_id
Started by: Arrien in: Toolset Professional Support |
|
2 | 5 | 5 years, 3 months ago | |
Importing a CSV user data to new site
Started by: Arrien in: Toolset Professional Support |
|
2 | 6 | 5 years, 5 months ago | |
Converting custom post types to users
Started by: Arrien in: Toolset Professional Support |
|
2 | 7 | 5 years, 8 months ago | |
Upgrading PHP without breaking my site
Started by: Arrien in: Toolset Professional Support |
|
2 | 12 | 5 years, 9 months ago |