how to get different style for post and different style when user visit it
-
I want to show the posts in different design and when my user will visit it then the design will be different
ex
Post Section
div class=”row”>
<div class=”col s12 m7″>
<div class=”card”>
<div class=”card-image”>
<img src=”/inc/img/2.jpg” height=”140″ width=”256″>
<span class=”card-title”>“> <?php the_title(); ?> </span>
</div>
<div class=”card-content”>
<p><?php the_content(); ?></p>
</div>
<div class=”card-action”>
” class=”button”>Read More…
This is a link
</div>
</div>
</div>
</div>Visited Post
<div class=”row”>
<div class=”col s12 m5″>
<div class=”card-title”>
<span class=”card-title”><?php the_title(); ?></span>
</div>
<div class=”card-panel teal”>
<span class=”white-text”>
<?php the_content(); ?>
</span>
</div>
</div>
</div>
- The topic ‘how to get different style for post and different style when user visit it’ is closed to new replies.