Hi, currently there is no such feature in WPAdverts, it is possible to develop something like this using 'adverts_action' filter, try adding following code in your theme functions.php file.
add_filter("adverts_action", "my_send_ad_pending_email");
function my_send_ad_pending_email( $action ) {
if($action == "save") {
wp_mail( "admin@email.com", "New Ad Pending", "There is new ad pending moderation" );
}
retu $action;
}
Note this is executed before ad is saved in DB so it's not really possible to insert edit link in email body, also note this will work with free ads only.
WordPress ...
ما را در سایت WordPress دنبال میکنید
برچسب:
نویسنده: استخدام کار
بازدید: 302
تاريخ: چهارشنبه
13 مرداد
1395 ساعت: 13:33