1
vote
1answer
178 views

Displaying terms based on loop posts?

I have a shortcode that shows a loop for a custom post type: while ( $loop->have_posts() ) : $loop->the_post(); // do something endwhile; Some of the posts are in categories ...
1
vote
1answer
246 views

Possible to display posts containing a short code ?

i have some posts with a certain shortcode in them. unfortunately these posts are in different categories and contain different tags so i am not able to query them. is it possible that i run a query ...
0
votes
1answer
111 views

post var problem with shortcode loop

I have a function to display the children of the page in the sidebar php file using wp_list_pages: global $post; ?>        <div id="subChildren">        <?php if($post->post_parent) ...
2
votes
2answers
168 views

Post the content of a specific “Custom Post Type” post within a post using a shortcode

The posts on our music blog usually include multiple tracks of music. I want to have each individual track be its own entity--a custom post type called "track"--which I want to be able to insert ...