WordPress: adauga un articol programat

In cazul in care vrei sa adaugi manual un articol in WordPress poti folosi urmatoarea functie PHP. Cu alte cuvinte in loc sa intri in sectiunea de articole poti sa adaugi articole direct din cod.

Sa exemplificam: Doresti sa adaugi un articol cu ultimele articolele dintr-un RSS.

Poti face acest lucru folosind acest cod:

[php]
global $user_ID;
$new_post = array(
‘post_title’ => ‘My New Post’,
‘post_content’ => ‘Lorem ipsum dolor sit amet…’,
‘post_status’ => ‘publish’,
‘post_date’ => date(‘Y-m-d H:i:s’),
‘post_author’ => $user_ID,
‘post_type’ => ‘post’,
‘post_category’ => array(0)
);
$post_id = wp_insert_post($new_post);
[/php]

Practic tot ce trebuie sa faci este sa definesti vectorul cu date si functia wp_insert_post face totul pentru tine

Spune si tu parerea...