Hola a todos.
He creado esta pequeña función para modificar la fecha de los post cada hora:
Código PHP:
Ver originalHi.
I have this fuction in my fuctions.php
<?php
if ( !wp_next_scheduled('re-post2') ) {
wp_schedule_event
( time(), 'hourly', 'rep-post2' ); }
function repostads() {
global $wpdb;
$querystr = "
UPDATE $wpdb->posts
INNER JOIN $wpdb->repost
ON $wpdb->posts.ID = $wpdb->repost.post_id
AND $wpdb->repost.DIA_FINAL >= NOW()
AND $wpdb->repost.ESTADO = 'OK'
SET $wpdb->posts.post_date = NOW()
";
}
add_action ( 're-post2', 'repostads' );
?>
I try to insert the query code in a sample page, and works fine, but when I insert in functions.php don´t make nothing.
what´s the error?
thanks
La query la he probado y funciona correctamente, pero sin embargo cuando la inserto en functions.php y aunque el WP_CRON la reconoce, cuando se ejecuta el CRON no hace absolutamente nada.
¿Donde puede estar el error? ¿Alguna idea?
Un saludo.