• Resolved domino4evers

    (@domino4evers)


    Hi there

    What if I wanna display the image first, then the title under the image?

Viewing 1 replies (of 1 total)
  • Plugin Author Travis

    (@tjtaylor)

    You can change the layout via WordPress filters. Add the following code to your themes functions.php file:

    function custom_rss_layout_callback( $layout ) {
        $layout = array(
            'thumbnail',
            'title',
            'content',
            'postdata',
        );
        return $layout;
    }
    add_filter( 'wp_rss_retriever_layout', 'custom_rss_layout_callback' );
Viewing 1 replies (of 1 total)
  • The topic ‘Change the style’ is closed to new replies.