Adding Read More button
-
I am trying to insert the read more button in the feed posts. I found the CSS code, but I don’t know what I should change in the code to make it link to my site. I assume I put the code in the additional css block in the plugin.
Can you show me what to change in the code?
function bweb_feedzy_readmore( $content, $link, $feedURL ) {
$content = str_replace( ‘[…]’, ‘<a href=”‘ . $link . ‘” target=”_blank”>’ . __(‘Read more’, ‘yourTex
tDomain’) . ‘ →</a>’, $content ); return $content;
}
add_filter( ‘feedzy_summary_output’, ‘bweb_feedzy_readmore’, 9, 3 );
The page I need help with: [log in to see the link]
- You must be logged in to reply to this topic.