• Resolved paze87

    (@paze87)


    Hello,
    is it possible to add a icon/image to a feed-item?
    Or can i override this function:

    /**
    * Merges the default arguments with the user set arguments
    *
    * @since 3.0
    */
    function wprss_get_shortcode_default_args( $args ) {
    // Default shortcode/function arguments for displaying feed items
    $shortcode_args = apply_filters(
    ‘wprss_shortcode_args’,
    array(
    ‘links_before’ => ‘<ul class=”rss-aggregator”>’,
    ‘links_after’ => ‘‘,
    ‘link_before’ => ‘<li class=”feed-item”>’,
    ‘link_after’ => ‘‘
    )
    );

    // Parse incoming $args into an array and merge it with $shortcode_args
    $args = wp_parse_args( $args, $shortcode_args );

    return $args;
    }
    Br, Patrick

    • This topic was modified 7 years, 7 months ago by paze87.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add a icon/image to feed item?’ is closed to new replies.