/** * Plugin Name: Auto Update Publish Date * Description: Tự động cập nhật thời gian xuất bản thành thời gian chỉnh sửa cuối cùng khi bạn nhấn "Cập nhật" bài viết, chỉ cập nhật 1 lần duy nhất. * Version: 1.0 * Author: LG Kim * License: GPLv2 or later */ if ( ! defined( 'ABSPATH' ) ) { exit; // Bảo vệ file khỏi truy cập trực tiếp } function update_post_publish_time_once( $post_id, $post, $update ) { // Kiểm tra xem bài viết có phải là revision hoặc bản nháp không, bỏ qua nếu đúng if ( wp_is_post_revision( $post_id ) || $post->post_status != 'publish' ) { return; } // Kiểm tra xem bài viết đã được cập nhật ngày xuất bản chưa (sử dụng custom field để lưu trạng thái này) $has_updated_publish_date = get_post_meta( $post_id, '_has_updated_publish_date', true ); // Nếu chưa cập nhật ngày xuất bản, thực hiện cập nhật và đánh dấu đã cập nhật if ( !$has_updated_publish_date ) { // Lấy thời gian chỉnh sửa và thời gian xuất bản hiện tại $modified_time = get_post_modified_time( 'Y-m-d H:i:s', false, $post_id, true ); $published_time = get_the_date( 'Y-m-d H:i:s', $post_id ); // So sánh nếu thời gian xuất bản khác với thời gian chỉnh sửa if ( $published_time !== $modified_time ) { // Sử dụng trực tiếp hàm SQL để giảm tải và tránh gọi nhiều hàm WP global $wpdb; $wpdb->update( $wpdb->posts, array( 'post_date' => $modified_time, 'post_date_gmt' => get_gmt_from_date( $modified_time ) ), array( 'ID' => $post_id ) ); clean_post_cache( $post_id ); // Làm sạch cache sau khi cập nhật // Đánh dấu bài viết đã cập nhật ngày xuất bản update_post_meta( $post_id, '_has_updated_publish_date', true ); } } } add_action( 'post_updated', 'update_post_publish_time_once', 10, 3 ); Bubble Gang July 14, 2024 Full Episode Replay

Your time is precious, and staying connected to home matters!

Don’t miss out on your favorite shows from the Philippines.

If you have Telegram, you can view and join OFW Teleserye right away!

Profile Picture

OFW Teleserye

Join our Official Channel

👉 How to watch the Next Part of the video at OFWTeleserye.su 🔥

If you enjoyed watching Bubble Gang July 14, 2024 in 720p best Video Quality, share Bubble Gang July 14, 2024 to your friends or leave a comment below at pinoynetwork.su

Bubble Gang July 14, 2024 Part 2 – 720p HD Quality

Please 🔄 REFRESH this page if the video is not yet complete or an error occurs. 🙏 Thank you for your patience and 🎬 enjoy the show!

Copy embed code: Part 2