`

wordpress plugin action

 
阅读更多
add_action('wp_footer', function() {
	echo 'Hello from the footer!';
});
*/

add_action('comment_post', function() {
	$email = get_bloginfo('admin_email');
	echo $email;
	wp_mail(
		$email,
		'New Comment Posted',
		'A new comment has been left on your blog'
	);
})
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics