这样的方式可能会奏效:
$results = array();
$allPosts = get_posts(\'post_type=post&numberposts=-1\');
foreach ($allPosts as $aPost) {
if ( substr($aPost->post_content, 0, 1) == \'<\' || substr($aPost->post_content, 0, 2) == \'<a\' )
$results[] = $aPost->ID;
}
echo "<pre>".print_r($results,true)."</pre>";
UPDATE: 但您应该在提供的链接中重新访问MySQL方法。这种php方法有些浪费,因为它可以获取所有内容,而不是只获取所需的内容。