Hi There,
we would like to add a “read more” link to the blog and archive using the raster layout.
How can we achieve this?
Thanks, T.
Hi,
Can you post the link to your blog please?
Regards,
Josue
Hi There,
Problem soved: We are using our own Pages for showing archives now and are redirecting archives to the pages by adding the following code to the top of the archive.php for a permanently redirect:
if(is_category( ‘News’ )) {
$pagelink=get_page_link (get_page_by_title( ‘News’ ));
header(“Location: $pagelink”,TRUE,301);
}
Cheers, T.