5
başlığına göre query_post?
başlığı kullanarak WP_Query veya query_posts kullanarak bir yazı döngüsü oluşturmak mümkün mü? yani $args = array('post_title'='LIKE '.$str.'% '); $res = WP_Query($arg); // the loop... // trying this now... $mypostids = $wpdb->get_col("select ID from $wpdb->posts where post_title like 'Abb%' "); echo count($mypostids).", "; // works but can't echo out array of …