📜  通过帖子 ID wordpress 获取帖子标题 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:09.275000             🧑  作者: Mango

代码示例2
Code
$args = array("post_type" => "mytype", "s" => $title);
$query = get_posts( $args );