我需要列出我的wordpress今天的文章在一個短格。 到目前爲止,我(想我)已經做出了正確的代碼列出今天的文章,但由於某種原因,這樣說:今天的文章列表 - Wordpress
Fatal error: Call to undefined function add_action() in /home/u783756934/public_html/wp-content/themes/wordplus/functions.php on line 30
我的代碼是這樣的:
<?php
include "functions.php";
$query = new WP_Query('year=' . the_time('Y') . '&monthnum=' . the_time('m') . '&day=' . the_time('d'));
$posts = $query->get_posts();
foreach ($posts as $post)
{
echo($post->post_title);
}
?>
我functions.php文件是原創的,未經編輯。
TLDR: 我需要列出今天發佈的文章,以便將輸出內容嵌入到其他網站。