Код: Выделить всё
function rss_woo_latest($content) {
if( is_feed() ){
$args = array( 'numberposts'=> 3,'orderby' => 'post_date','order' => 'DESC','post_type' => 'product' );
$products = get_posts( $args );
$content = $content.$products;
}
return $content;
}
add_filter('the_excerpt_rss', 'rss_woo_latest');
add_filter('the_content', 'rss_woo_latest');
Подробнее здесь: https://stackoverflow.com/questions/762 ... -blog-feed
Мобильная версия