get_feed_items( 'https://www.godaddy.com/garage/wordpress/feed/' ); $item = ! empty( $garage_rss[0] ) ? $garage_rss[0] : null; if ( is_a( $item, 'SimplePie_Item' ) ) : ?>
get_item_quantity( absint( $limit ) ); if ( 0 === $limit ) { return []; } $items = $rss->get_items( absint( $offset ), $limit ); foreach ( $items as $item ) { $output[] = [ 'title' => '', 'permalink' => $item->get_link(), 'excerpt' => '', ]; } return $items; } }