[ASK] Membuat Plugin After Post
-
Permisi gan, ane butuh bantuan nih. Ane mau buat plugin, yang script itu aktif/jalan pada saat setelah melakukan publikasi artikel (post artikel) untuk blog ane disini http://bangroyhan.cf/.
Apa bener yang ane pake bersumber dari http://codex.wordpress.org/Plugin_API/Action_Reference/save_post ???Tapi pas ane coba, kok ga jadi yah???
<?php /* Plugin Name: Setelah post Maka Plugin URI: http://bangroyhan.cf Description: Coba dulu Author: Royhan Version: 1.2.1 Author URI: http://bangroyhan.cf Copyright 2015 B.R.H */ function my_project_updated_send_email( $post_id ) { // If this is just a revision, don't send the email. if ( wp_is_post_revision( $post_id ) ) return; $post_title = get_the_title( $post_id ); $post_url = get_permalink( $post_id ); $subject = 'A post has been updated'; $message = "A post has been updated on your website:\n\n"; $message .= $post_title . ": " . $post_url; // Send email to admin. wp_mail( 'mohroyha0102@bsi.ac.id', $subject, $message ); } add_action( 'save_post', 'my_project_updated_send_email' ); ?>
Sebelumnya maaf, ane bener-bener baru di dunia wordpress.
- Topik ‘[ASK] Membuat Plugin After Post’ tertutup untuk balasan baru.