Tag page that displays specific posts

Create tag.php & save it in your theme directory. This is a default behavior of wordpress. So you don’t have to struggle with it. <?php if ( have_posts() ) : // Start the Loop. while ( have_posts() ) : the_post(); // Do your stuff here such as below the_title(); the_content(); endwhile; else: echo ‘No Post … Read more

How to make diferent post formats for different pages?

You will need to create either a child theme based on a current theme you are already using, or develop your own custom theme. Within your theme, you’ll have complete control over the layouts used for single posts and category pages (knowns as archives). A great place to start is with the WordPress documentation at … Read more

Wrap posts from a category in HTML

Why don’t you use WP_Query. You can pass array as parameter. The array can contain category, number of posts, order etc. Then you can use the while loop to display posts and wrap them in html. Please go to http://wordpress.org and look for WP_Query for further details.

WordPress Page Column Problem [closed]

It’s because of the extra class row wrapped. After the container class <div class=”container”> Remove this code of class row <div class=”row”> and also remove the extra closing div if added for it. The sidebar will be positioned to the right side.

remove description in colum title post

On same page above post list (in top right), you have this section to change list view. Select the red arrow pointed option to disable excerpt view. Currently you are in excerpt view that’s why post description is showing.

Show Title/Date/Excerpt of first post & only Title for rest in Query [duplicate]

In your loop, you can use a variable to check, in this case $i, so the code will belong to: <?php $the_query = new WP_Query( ‘showposts=7&cat=113’ ); ?> <?php while ($the_query->have_posts()) : $the_query->the_post(); ?> <strong><a href=”https://wordpress.stackexchange.com/questions/199653/<?php the_permalink() ?>”><?php the_title(); ?></a></strong> <hr size=”1″ color=”#919191″> <?php endwhile;?> <?php $the_query = new WP_Query( ‘showposts=7&cat=113’ ); ?> <?php $i … Read more

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