Wordpress: How to programmatically add post for each day?
I would like to know if there is a possibility to have a script that creates automatically daily posts "from today" to "end date" (manually set in the script). So at each iteration post_date would be $date +1day.
First i don't know if this script must be executed in functions.php or elsswhere...
Second, i am newbie in php, so i have understood how to create 1 single post with "wp_insert_post" but i don't understand how to insert it in a loop.
Looking for help, if someone has an idea...
Thanks a lot
php wordpress bulkinsert
add a comment |
I would like to know if there is a possibility to have a script that creates automatically daily posts "from today" to "end date" (manually set in the script). So at each iteration post_date would be $date +1day.
First i don't know if this script must be executed in functions.php or elsswhere...
Second, i am newbie in php, so i have understood how to create 1 single post with "wp_insert_post" but i don't understand how to insert it in a loop.
Looking for help, if someone has an idea...
Thanks a lot
php wordpress bulkinsert
add a comment |
I would like to know if there is a possibility to have a script that creates automatically daily posts "from today" to "end date" (manually set in the script). So at each iteration post_date would be $date +1day.
First i don't know if this script must be executed in functions.php or elsswhere...
Second, i am newbie in php, so i have understood how to create 1 single post with "wp_insert_post" but i don't understand how to insert it in a loop.
Looking for help, if someone has an idea...
Thanks a lot
php wordpress bulkinsert
I would like to know if there is a possibility to have a script that creates automatically daily posts "from today" to "end date" (manually set in the script). So at each iteration post_date would be $date +1day.
First i don't know if this script must be executed in functions.php or elsswhere...
Second, i am newbie in php, so i have understood how to create 1 single post with "wp_insert_post" but i don't understand how to insert it in a loop.
Looking for help, if someone has an idea...
Thanks a lot
php wordpress bulkinsert
php wordpress bulkinsert
asked Nov 23 '18 at 6:57
pipoulitopipoulito
3119
3119
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Yes, Of course we can do it.
From digging through /wp-includes/post.php, It looks like you may need to follow few steps:
- set your post_status to future.
- set the post_date to when you want it published.
insert the post as your code shows.
function daily_post_article() {
$begin = new DateTime("2018-11-01");
$end = new DateTime("2018-12-15");
$interval = DateInterval::createFromDateString("1 day");
$period = new DatePeriod($begin, $interval, $end);
foreach ($period as $dt) {
$publishDate = $dt->format("Y-m-d");
$postTitle = "Daily Post Title => ".$publishDate;
if ( !get_page_by_title( $postTitle, "OBJECT", "post" ) ){
$args = array(
"post_title"=> "Daily Post Title => ".$publishDate,
"post_type"=>"post",
"post_date" => $publishDate,
"post_status"=>"future"
);
$time = strtotime( $postdate . " GMT" );
$post_id = wp_insert_post( $args );
wp_schedule_single_event( $time, "publish_future_post", array( $post_id ) );
}
}
}
add_action("wp", "daily_post_article");
Each post will be automatically published on selected date.
- This features provided by WordPress.
thanks a lot but can i use it without a CRON by excepting the script just once time and creating posts as many posts from "today" to "END date" .?
– pipoulito
Nov 23 '18 at 8:13
Please add this code to functions.php file of you currently activated theme, Please let me know if you face any issues.
– Ankit Panchal
Nov 28 '18 at 4:05
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53441958%2fwordpress-how-to-programmatically-add-post-for-each-day%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Yes, Of course we can do it.
From digging through /wp-includes/post.php, It looks like you may need to follow few steps:
- set your post_status to future.
- set the post_date to when you want it published.
insert the post as your code shows.
function daily_post_article() {
$begin = new DateTime("2018-11-01");
$end = new DateTime("2018-12-15");
$interval = DateInterval::createFromDateString("1 day");
$period = new DatePeriod($begin, $interval, $end);
foreach ($period as $dt) {
$publishDate = $dt->format("Y-m-d");
$postTitle = "Daily Post Title => ".$publishDate;
if ( !get_page_by_title( $postTitle, "OBJECT", "post" ) ){
$args = array(
"post_title"=> "Daily Post Title => ".$publishDate,
"post_type"=>"post",
"post_date" => $publishDate,
"post_status"=>"future"
);
$time = strtotime( $postdate . " GMT" );
$post_id = wp_insert_post( $args );
wp_schedule_single_event( $time, "publish_future_post", array( $post_id ) );
}
}
}
add_action("wp", "daily_post_article");
Each post will be automatically published on selected date.
- This features provided by WordPress.
thanks a lot but can i use it without a CRON by excepting the script just once time and creating posts as many posts from "today" to "END date" .?
– pipoulito
Nov 23 '18 at 8:13
Please add this code to functions.php file of you currently activated theme, Please let me know if you face any issues.
– Ankit Panchal
Nov 28 '18 at 4:05
add a comment |
Yes, Of course we can do it.
From digging through /wp-includes/post.php, It looks like you may need to follow few steps:
- set your post_status to future.
- set the post_date to when you want it published.
insert the post as your code shows.
function daily_post_article() {
$begin = new DateTime("2018-11-01");
$end = new DateTime("2018-12-15");
$interval = DateInterval::createFromDateString("1 day");
$period = new DatePeriod($begin, $interval, $end);
foreach ($period as $dt) {
$publishDate = $dt->format("Y-m-d");
$postTitle = "Daily Post Title => ".$publishDate;
if ( !get_page_by_title( $postTitle, "OBJECT", "post" ) ){
$args = array(
"post_title"=> "Daily Post Title => ".$publishDate,
"post_type"=>"post",
"post_date" => $publishDate,
"post_status"=>"future"
);
$time = strtotime( $postdate . " GMT" );
$post_id = wp_insert_post( $args );
wp_schedule_single_event( $time, "publish_future_post", array( $post_id ) );
}
}
}
add_action("wp", "daily_post_article");
Each post will be automatically published on selected date.
- This features provided by WordPress.
thanks a lot but can i use it without a CRON by excepting the script just once time and creating posts as many posts from "today" to "END date" .?
– pipoulito
Nov 23 '18 at 8:13
Please add this code to functions.php file of you currently activated theme, Please let me know if you face any issues.
– Ankit Panchal
Nov 28 '18 at 4:05
add a comment |
Yes, Of course we can do it.
From digging through /wp-includes/post.php, It looks like you may need to follow few steps:
- set your post_status to future.
- set the post_date to when you want it published.
insert the post as your code shows.
function daily_post_article() {
$begin = new DateTime("2018-11-01");
$end = new DateTime("2018-12-15");
$interval = DateInterval::createFromDateString("1 day");
$period = new DatePeriod($begin, $interval, $end);
foreach ($period as $dt) {
$publishDate = $dt->format("Y-m-d");
$postTitle = "Daily Post Title => ".$publishDate;
if ( !get_page_by_title( $postTitle, "OBJECT", "post" ) ){
$args = array(
"post_title"=> "Daily Post Title => ".$publishDate,
"post_type"=>"post",
"post_date" => $publishDate,
"post_status"=>"future"
);
$time = strtotime( $postdate . " GMT" );
$post_id = wp_insert_post( $args );
wp_schedule_single_event( $time, "publish_future_post", array( $post_id ) );
}
}
}
add_action("wp", "daily_post_article");
Each post will be automatically published on selected date.
- This features provided by WordPress.
Yes, Of course we can do it.
From digging through /wp-includes/post.php, It looks like you may need to follow few steps:
- set your post_status to future.
- set the post_date to when you want it published.
insert the post as your code shows.
function daily_post_article() {
$begin = new DateTime("2018-11-01");
$end = new DateTime("2018-12-15");
$interval = DateInterval::createFromDateString("1 day");
$period = new DatePeriod($begin, $interval, $end);
foreach ($period as $dt) {
$publishDate = $dt->format("Y-m-d");
$postTitle = "Daily Post Title => ".$publishDate;
if ( !get_page_by_title( $postTitle, "OBJECT", "post" ) ){
$args = array(
"post_title"=> "Daily Post Title => ".$publishDate,
"post_type"=>"post",
"post_date" => $publishDate,
"post_status"=>"future"
);
$time = strtotime( $postdate . " GMT" );
$post_id = wp_insert_post( $args );
wp_schedule_single_event( $time, "publish_future_post", array( $post_id ) );
}
}
}
add_action("wp", "daily_post_article");
Each post will be automatically published on selected date.
- This features provided by WordPress.
edited Nov 26 '18 at 9:20
answered Nov 23 '18 at 7:43
Ankit PanchalAnkit Panchal
1064
1064
thanks a lot but can i use it without a CRON by excepting the script just once time and creating posts as many posts from "today" to "END date" .?
– pipoulito
Nov 23 '18 at 8:13
Please add this code to functions.php file of you currently activated theme, Please let me know if you face any issues.
– Ankit Panchal
Nov 28 '18 at 4:05
add a comment |
thanks a lot but can i use it without a CRON by excepting the script just once time and creating posts as many posts from "today" to "END date" .?
– pipoulito
Nov 23 '18 at 8:13
Please add this code to functions.php file of you currently activated theme, Please let me know if you face any issues.
– Ankit Panchal
Nov 28 '18 at 4:05
thanks a lot but can i use it without a CRON by excepting the script just once time and creating posts as many posts from "today" to "END date" .?
– pipoulito
Nov 23 '18 at 8:13
thanks a lot but can i use it without a CRON by excepting the script just once time and creating posts as many posts from "today" to "END date" .?
– pipoulito
Nov 23 '18 at 8:13
Please add this code to functions.php file of you currently activated theme, Please let me know if you face any issues.
– Ankit Panchal
Nov 28 '18 at 4:05
Please add this code to functions.php file of you currently activated theme, Please let me know if you face any issues.
– Ankit Panchal
Nov 28 '18 at 4:05
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53441958%2fwordpress-how-to-programmatically-add-post-for-each-day%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown