Add a icon/image to feed item?
-
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
- The topic ‘Add a icon/image to feed item?’ is closed to new replies.