Display all posts from specific category

In your query post, I don’t see your post type parameter. You must need this parameter to get all posts. Please try this follow the code and put it anywhere you want to show it. <?php $post_args = array( ‘post_type’ => ‘post’, //get post by ‘post’ (default post type). ‘posts_per_page’ => -1, //show all posts. … Read more

How to Completely Remove Archive Title a.k.a the_archive_title?

You can add the following function in the functions.php of your child theme. add_filter(‘get_the_archive_title’, ‘my_get_the_archive_title’ ); function my_get_the_archive_title( $title ) { if ( is_category() ) { $title = single_cat_title( ”, false ); } elseif ( is_tag() ) { $title = single_tag_title( ”, false ); } elseif ( is_author() ) { $title=”<span class=”vcard”>” . get_the_author() . … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)