获取以字母A开头的所有自定义帖子

时间:2018-02-06 13:04:42

标签: wordpress

我有一个带有自定义分类法(event_countries)的自定义帖子类型(事件)。

http://educationgate.org/en/event_countries/united-arab-emirates/

我希望获得所有与字母A相关的自定义帖子。

问题是我希望通过url字符串获取此信息。

我试过http://educationgate.org/en/event_countries/united-arab-emirates?orderby=title&order=ASC&s=A

但是这将转到搜索页面并显示所有帖子。

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

这一定很有帮助

global $wpdb; 
$request = "A" 
$results = $wpdb->get_results(
        "
        SELECT * FROM $wpdb->posts
        WHERE post_title LIKE '$request%'
        AND post_type = 'event'
        AND post_status = 'publish'; 
        "
);