5
query_post per titolo?
è possibile creare un ciclo di post usando WP_Query o query_posts usando il titolo? vale a dire $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 …