- Dialog Display On User Image Approval
- Changing A Mockup URL Slug
- Extend Backbone Models, Views, Collections
- Custom Scripts & Styles
- Website Publish Action
- New Comment Threads
- Additional Notification Emails
- Welcome Message In Mockups
- Change Subscribed User Email
- Dialog Display After A Comment
- Auto-Close Mockup Comment
- Changing Mockup Download
- Add Settngs To Extension Page
- Listening JavaScript Events
- Modify Default Mockup Project Options
- Overriding & Changing Templates
ph_website_publish_thread
This action runs after a new website thread is published.
Parameters
- $post_ID – (int) Post ID.
- $thread – (WP_Post) Post object for the thread.
Examples
<?php
function my_project_created_send_email( $post_id, $thread) {
$thread_url = get_permalink( $post_id );
$subject = 'A new conversation has been started.';
// get webpage id (parent_id)
$webpage_id = get_post_meta( $post_id, 'parent_id', true);
$message = " A new conversation has been started on " . get_the_title($webpage_id) . ". \n\n";
$message .="View it" . $post_url;
// Send email to admin.
wp_mail( '[email protected]', $subject, $message );
}
add_action( 'ph_website_publish_thread', 'my_project_created_send_email', 10, 3 );
Was this doc helpful?
What went wrong?
We don't respond to the article feedback, we use it to improve our support content.
On this page