最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

functions - Trigger email alert if file downloaded

programmeradmin2浏览0评论

I've found this solution which triggers an email alert when an article is viewed, but wondered if a similar technique is possible for when a specific file is downloaded?

function article_email_alert() {
global $post;
if( $post->ID == 1234) { 
        wp_mail( '[email protected]', 'Alert', 'The article was visited.' );
    }
} 
add_action( 'wp', 'article_email_alert' );
发布评论

评论列表(0)

  1. 暂无评论