Created
January 18, 2015 18:55
-
-
Save shahadat014/89436f198ab9fc28e8a4 to your computer and use it in GitHub Desktop.
Shortcode inside custom post wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function post_list_shortcode($atts){ | |
extract( shortcode_atts( array( | |
'count' => '', | |
), $atts) ); | |
$q = new WP_Query( | |
array('posts_per_page' => $count, 'post_type' => 'posttype', 'meta_key' => 'order_number','orderby' => 'meta_value','order' => 'ASC') | |
); | |
$list = '<div class="custom_post_list">'; | |
while($q->have_posts()) : $q->the_post(); | |
$idd = get_the_ID(); | |
$custom_field = get_post_meta($idd, 'custom_field', true); | |
$post_content = get_the_content(); | |
$list .= ' | |
<div class="single_post_item"> | |
<h2>' .do_shortcode( get_the_title() ). '</h2> | |
'.wpautop( $post_content ).' | |
<p>'.$custom_field.'</p> | |
</div> | |
'; | |
endwhile; | |
$list.= '</div>'; | |
wp_reset_query(); | |
return $list; | |
} | |
add_shortcode('post_list', 'post_list_shortcode'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment