aliakbari
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Plugins
In reply to: WordPress Blur ImageHow can I do like this without plugin?
https://wordpress.org/plugins/image-effects-generator
(blur effect)
Forum: Fixing WordPress
In reply to: WordPress LoopThank You;
How do I use every time the loop is just a series of custom post?for examle:
<li> custom post 1 </li> <li> custom post 2 </li> <li> custom post 3 </li>Forum: Fixing WordPress
In reply to: WordPress Loopim use for slider.
my code:
<ul> <!--start loop --> <li> <!--posts % 3 == 0 --> <div class="big-slide"> <a href="<?php the_permalink(); ?>"> alt="<?php the_title(); ?>" width="638" height="320" style="width: 638px; height: 320px;"> </a> </div> <!--posts % 3 == 1--> <div class="small-slide"> <a href="<?php the_permalink(); ?>"> alt="<?php the_title(); ?>" width="312" height="157" style="width: 312px; height: 157px;"> </a> </div> <!--posts % 3 == 2--> <div class="small-slide"> <a href="<?php the_permalink(); ?>"> alt="<?php the_title(); ?>" width="312" height="157" style="width: 312px; height: 157px;"> </a> </div> </li> </ul> <!--end loop -->Forum: Fixing WordPress
In reply to: WordPress LoopThis topic could not help me
https://wordpress.org/support/topic/how-to-modify-loop-to-split-posts-into-groups-of-threes?replies=12#post-1604900please write loop for this html:
each post has different style in loop.
`
<ul>
<li>
<div class=post-style-one></div>
<div class=post-style-tow></div>
<div class=post-style-three></div></li>
<li>
<div class=post-style-one></div>
<div class=post-style-tow></div>
<div class=post-style-three></div></li>
</ul>
Viewing 4 replies - 1 through 4 (of 4 total)