Làm thế nào để thêm ảnh bài viết vào feed rss wordpress
Lượt xem: 1803
Để customize rss trong wordpress bạn có thể tham khảo bài viết làm thế nào để customize feed ress wordpress.
Tuy nhiên việc customize này chưa hỗ trợ ảnh bài viết hiển thị trong RSS vậy làm thế nào? Hãy làm theo cách sau cảu dandev nhé.
Trong file functions.php bạn bổ sung thêm đoạn code sau
function featuredtoRSS($content) {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
$content = '<div >' . get_the_post_thumbnail( $post->ID, 'medium', array( 'style' => 'margin-bottom: 15px;' ) ) . '</div>' . $content;
}
return $content;
}
add_filter('the_excerpt_rss', 'featuredtoRSS');
add_filter('the_content_feed', 'featuredtoRSS');
Video