我想在foreach循环中检索帖子的内容。
$recent_posts = wp_get_recent_posts();
$url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) );
$content = apply_filters( \'the_content\', get_the_content() );
$content = str_replace( \']]>\', \']]>\', $content );
foreach( $recent_posts as $recent ){
echo \'<img src="\'. $url .\'">\'. \'<a href="\'. get_permalink($recent["ID"]) .\'"><h1>\'. $recent["post_title"] .\'</h1><h2>\'. get_the_date() .\'</h2><p>\'. $content .\'</p></a>\';
}
但它给了我一个空
<p>
. 是否无法使用
get_the_content();
像这样?
谢谢