-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathre-publish-old-post.php
59 lines (50 loc) · 1.68 KB
/
re-publish-old-post.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/**
* script untuk republish artikel-artikel lama agar menjadi artikel baru
* script simple ini berjalan ketika ada seseorang membuka suatu artikel (single post)
* belum ada UI masih hardcode (nulis langsung dikoding) tapi tenang, script ini 100% work.
*/
/** cara pakai **/
add_action('wp_footer', function() {
if ( is_single() ) {
auto_re_publish(1);
// contoh exclude kategori
// auto_re_publish( 1, array(11, 20, 140) );// itu adalah ID dari category yang ingin dikecualikan
// contoh re publish 10 artikel/post, dan exclude beberapa category
// auto_re_publish( 10, array( 11, 20, 140 ) );
}
});
/**
* auto re publish konten lawas
* @param $posts_per_page int jumlah post yang ingin direpublish
* @param $category__not_in array (optional) kategori yang tidak ingin di republish
* @return void
*/
function auto_re_publish($posts_per_page = 1, $category__not_in = array())
{
$current_date = date('Y-m-d');
$last_action = get_option('__last_action', '2000-01-01');
if ( strtotime($current_date) > strtotime($last_action) ) {
$args=[
'orderby' => 'date',
'order' => 'ASC',
'posts_per_page' => $posts_per_page,
'category__not_in' => $category__not_in
];
if ( ! empty( $category__not_in) && is_array($category__not_in) ) {
$args['category__not_in'] = $category__not_in;
}
$posts = get_posts($args);
$strtotime = strtotime("-1 days");
foreach( $posts as $post ) {
$strtotime += rand(10,100);
$yesterday = date( 'Y-m-d H:i:s', $strtotime );
wp_update_post(array(
'ID' => $post->ID,
'post_date' => $yesterday,
'post_date_gmt' => gmdate( $yesterday ),
));
}
update_option( '__last_action', $current_date );
}
}