[insert_php]
echo “Hari ini adalah hari”.date(“Y/m/d”);
[/insert_php]
[insert_php]
$posts = $wpdb->get_results(“SELECT ID, post_title FROM wp8v_posts WHERE post_status = ‘future’
AND post_type=’post’ ORDER BY post_date ASC LIMIT 0,4″)
// Echo the title of the first scheduled post
echo $posts[0]->post_title;
[/insert_php]
[php_everywhere]