daily-posts
function auto_add_post_to_daily_page($post_id, $post, $update) {
// শুধু published post
if ($post->post_status != ‘publish’) {
return;
}
// autosave skip
if (defined(‘DOING_AUTOSAVE’) && DOING_AUTOSAVE) {
return;
}
// page slug
$page = get_page_by_path(‘daily-posts’);
if (!$page) {
return;
}
// পোস্ট title + link
$post_title = get_the_title($post_id);
$post_link = get_permalink($post_id);
// আজকের date
$today = date(‘d/m/Y’);
// page content
$content = $page->post_content;
// duplicate check
if (strpos($content, $post_link) !== false) {
return;
}
// নতুন post line
$new_line = ‘
‘;
// date already আছে?
if (strpos($content, $today) !== false) {
// date এর নিচে add করবে
$content = str_replace(
$today,
$today . $new_line,
$content
);
} else {
// নতুন date section
$content .= ‘
‘ . $today . ‘
‘ . $new_line;
}
// update page
wp_update_post(array(
‘ID’ => $page->ID,
‘post_content’ => $content
));
}
add_action(‘save_post’, ‘auto_add_post_to_daily_page’, 10, 3);
