Content Appears in Title Blog Categories
-
Hello there.
When you hover your mouse over the blog category titles, the posts appear in the content.
https://www.lavitasarim.com/ozgun-blog-sayfasi/
How to prevent this.
Thanks.
Attachments:
You must be
logged in to view attached files.
Hello,
Try to add the following PHP code snippet to the child theme functions.php file to do this
add_filter( 'widget_categories_args', function($args){
$args['use_desc_for_title'] = false;
return $args;
} );
Kind Regards
XTemos Studio