I want to remove the meta data below each blog post (date, number of commentaries, category and author) and the links too. Also I’d like to change the “Read more link” to another textstring (Forexample: “Curious?” or something else).
Easy how to?
Regards
Metin
Hey metin_aydin,
To hide the meta data, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
span.post-meta-infos {
display: none !important;
}
To change the read more link, Try adding this code to the end of your functions.php file in Appearance > Editor:
function custom_more_link(){
?>
<script>
(function($){
$(document).ready(function(){
$(".more-link").text("Curious?");
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'custom_more_link');
Best regards,
Mike
Hi Mike,
It worked! But only on the frontpage http://www.taekwondo-summercamp.dk/ and not on http://www.taekwondo-summercamp.dk/news/
I can’t see how CSS is not affected on the latter page – can you grasp it?
Regards
Metin