Skip to main content

Posts

Showing posts with the label random

sawsan How to add random post for wordpress

မနေ့က zBench theme ထဲက php file တွေကို ဖတ်ကြည့်ရင်း. single post တွေရဲ့ အောက်နားမှာ random post လေးတွေထည့်သုံးထားတာသွားတွေ့တယ်။ ဒါနဲ့ ကျနော်လည်း ကျနော့ theme ရဲ့ single post တွေမှာ random post ကိုထည့်သုံးချင်တာနဲ့ random post အတွက်ရေးထားတဲ့ php code လေးတွေကို ဆွဲထုတ်လိုက်တယ်။ ဒီလိုလေး ရေးထားတာဗျ။ <h3><?php _e('Random Posts', ''); ?></h3> <ul><?php $rand_posts = get_posts('numberposts=5&orderby=rand'); foreach( $rand_posts as $post ) :?> <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li> <?php endforeach; ?> </ul>