Hi Manni,
Here is the answers to your questions :
– place meta data under excerpt (and not above)?
Unfortunately not (for the moment)
– not only showing author, but also Domain of source?
Unfortunately not, but you may probably do something with the feedzy_meta_output hook and a bit of regex.
– making thumbnails not square but rectangular?
function bweb_feedzy_thumb_aspect_ratio( $sizes, $feedURL ) {
$sizes = array(
'width' => $sizes['width'] * (16/9),
'height' => $sizes['height']
);
return $sizes;
}
add_filter( 'feedzy_thumb_sizes', 'bweb_feedzy_thumb_aspect_ratio', 10, 2 );
– placing a “Read more >>”-Link at the right bottom?
function bweb_feedzy_readmore( $content, $link, $feedURL ) {
$content = str_replace( '[…]', '<a href="' . $link . '" target="_blank">' . __('Read more', 'yourTextDomain') . ' →</a>', $content );
return $content;
}
add_filter( 'feedzy_summary_output', 'bweb_feedzy_readmore', 9, 3 );
– add rel=nofollow if want to?
function bweb_feedzy_add_link_param_matches( $matches ) {
return '<a href="' . $matches[1] . '?tid=FS,IT" target="_blank" rel="nofollow">' . $matches[2] . '</a>';
}
function bweb_feedzy_add_link_param( $content, $feedURL ) {
$pattern= '/<a.*href=\"(https?:\/\/.*)\".*>(.*)<\/a>/iU';
$content= preg_replace_callback( $pattern, 'bweb_feedzy_add_link_param_matches', $content );
return $content;
}
add_filter( 'feedzy_global_output', 'bweb_feedzy_add_link_param', 9, 2 );
– If a image in rss feed is available, but it can’t be load because the link to an image is present but not working, what are you doing?
Image are displaying as background to prevent this case of failure and the default feedzy thumb is displayed as a background fallback. By this way, you won’t see any broken image.
– What are you doing if images load very slowly? Did it affect time for first page rendering when your plugin is active? Or did the image simply load after first page rendering?
Unfortunately it affect the page loading time since it is present within it’s DOM.
– would be nice when you add an extra CSS Class Tag around meta_data, like class=rss_meta_data
You can tweak the meta design with the following selector : .rss_content small
Here is the full hooks documentation page.