Created
January 5, 2019 09:55
-
-
Save Tsunamijaan/fc0bfbfc01ba9d459684e93a980c1085 to your computer and use it in GitHub Desktop.
Shortcode inside custom post wordpress
This file contains 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', 'orderby' => 'menu_order','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