爲什麼忽略我的第二個WHERE函數?wordpress:新WP_Query和WHERE
使用此功能,我得到所有消息,但與所有用戶。
爲什麼抓取和用戶的id是1?
$新聞=新 WP_Query( 'post_type =新聞& post_author = 1 &排序依據= ID &爲了= ASC!');
感謝;)
爲什麼忽略我的第二個WHERE函數?wordpress:新WP_Query和WHERE
使用此功能,我得到所有消息,但與所有用戶。
爲什麼抓取和用戶的id是1?
$新聞=新 WP_Query( 'post_type =新聞& post_author = 1 &排序依據= ID &爲了= ASC!');
感謝;)
您可以使用WordPress WP_Query API修改查詢。當您使用author
(id)整數或author_name
(字符串)時,WordPress爲您處理WHERE。
$args = array (
'post_type' => 'news',
'ordery' => 'id',
'order' => 'ASC',
'author' => (-1)
);
$news = new WP_Query($args);
我很確定這不是正確的語法。 – 2011-05-02 08:46:29