Hi @j3200,
Thanks for using Super RSS Reader and glad that you liked it.
Sorry for the late reply.
Yes it is possible to customize the output using the PHP filters provided by the plugin.
Below is the hook to achieve that.
Actions and Filters
This would be the implementation. I haven’t tested this, but it should work. Please change the class name of the read more button as required.
add_filter( 'srr_mod_item_html', 'srr_read_more_btn', 10, 3 );
function srr_read_more_btn( $html, $feed_url, $feed_item ){
// Get the permalink for the current feed item
$permalink = esc_url( $feed_item->get_permalink() );
// Create the "Read More" button HTML
$read_more_button = '<a href="' . $permalink . '" class="read-more-button" target="_blank">Read More</a>';
// Append the button to the description
$html['description'] .= '<br>' . $read_more_button;
return $html;
}
Thanks,
Aakash