shortcode ব্যবহার করে General page এর list - TopicsExpress



          

shortcode ব্যবহার করে General page এর list আনতে হলে নিচের code টা use করেন এটা use করতে হবে functions.php তে /*this is general post by shortcode*/ function general_post_shortcode($atts){ extract( shortcode_atts( array( count => 5, ), $atts ) ); $q = new WP_Query( array(posts_per_page => $count, post_type => page) ); $list = ; while($q->have_posts()) : $q->the_post(); $idd = get_the_ID(); $list .= .get_the_title(). ; endwhile; $list.= ; wp_reset_query(); return $list; } add_shortcode(pages, general_post_shortcode); আর যেখানে shortcode টা ব্যাবহার করতে চান সেখানে ...[pages] .... আর যদি কোন ফাইল এর মধ্যে ব্যাবহার করতে চান তাহলে shortcode বিষয়ে কোন প্রশ্ন থাকলে question করতে পারেন।
Posted on: Fri, 24 Oct 2014 08:32:59 +0000

Trending Topics



Recently Viewed Topics




© 2015