Title: cfetr's Replies | WordPress.org

---

# cfetr

  [  ](https://wordpress.org/support/users/cfetr/)

 *   [Profile](https://wordpress.org/support/users/cfetr/)
 *   [Topics Started](https://wordpress.org/support/users/cfetr/topics/)
 *   [Replies Created](https://wordpress.org/support/users/cfetr/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/cfetr/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/cfetr/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/cfetr/engagements/)
 *   [Favorites](https://wordpress.org/support/users/cfetr/favorites/)

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [edit-tag.php Sortable Column not sorting correctly](https://wordpress.org/support/topic/edit-tagphp-sortable-column-not-sorting-correctly/)
 *  Thread Starter [cfetr](https://wordpress.org/support/users/cfetr/)
 * (@cfetr)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/edit-tagphp-sortable-column-not-sorting-correctly/#post-4358615)
 * I realize why this does not work. The value for term_order is not from the postmeta
   table. The term_order actually comes from a field that was added to the terms
   table. I am continuing to look for a solution for this.
 *   Forum: [Hacks](https://wordpress.org/support/forum/plugins-and-hacks/hacks/)
   
   In reply to: [question about get_post_meta()](https://wordpress.org/support/topic/question-about-get_post_meta/)
 *  Thread Starter [cfetr](https://wordpress.org/support/users/cfetr/)
 * (@cfetr)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/question-about-get_post_meta/#post-3880161)
 * Thanks, that is what I figured.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MediaElement.js - HTML5 Video & Audio Player] Why Audioplayer is shown twice](https://wordpress.org/support/topic/why-audioplayer-is-shown-twice/)
 *  [cfetr](https://wordpress.org/support/users/cfetr/)
 * (@cfetr)
 * [13 years, 1 month ago](https://wordpress.org/support/topic/why-audioplayer-is-shown-twice/#post-3772379)
 * For anyone else that may need assistance, you can wrap the shortcode in a div
   tag as well. That way you don’t get the pre styles.
 * EDIT: This worked for videos – I have not tried audio.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[NextGEN Scroll Gallery] useDesc: (boolean) use description as caption not working](https://wordpress.org/support/topic/usedesc-boolean-use-description-as-caption-not-working/)
 *  [cfetr](https://wordpress.org/support/users/cfetr/)
 * (@cfetr)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/usedesc-boolean-use-description-as-caption-not-working/#post-3227841)
 * I ran into this problem as well. In order for mine to work I had to make sure
   useCaptions and useDesc were both checked.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Custom Fields (ACF®)] New custom fields not displaying](https://wordpress.org/support/topic/new-custom-fields-not-displaying/)
 *  [cfetr](https://wordpress.org/support/users/cfetr/)
 * (@cfetr)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/new-custom-fields-not-displaying/page/2/#post-3247039)
 * I also had this issue. I resolved it by changing my theme back to twenty eleven
   and then reactivating my desired theme.
 * Hope this helps others.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[My Post Order] Troubles with WP_Query object](https://wordpress.org/support/topic/troubles-with-wp_query-object/)
 *  Thread Starter [cfetr](https://wordpress.org/support/users/cfetr/)
 * (@cfetr)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/troubles-with-wp_query-object/#post-3387847)
 * Thanks for your help. I am sure it is something simple that I am missing since
   I can make query_posts() work.
 *     ```
       <?php
       global $post;
   
       $postQuery = new WP_Query(array('section_name'=>'campaigns'));
   
       get_header(); ?>
   
       	<div id="primary" class="site-content">
       		<div id="content" role="main">
           	<div id="campaigns" class="page-content">
             	<h2 class="page-title"><?php the_title(); ?></h2>
       				<?php if ( $postQuery->have_posts() ) : ?>
               <?php /* Start the Loop */ ?>
                 <?php while ( $postQuery->have_posts() ) : $postQuery->the_post(); ?>
                 <?php //get_template_part( 'content', get_post_format() ); ?>
                 <div id="post-<?php echo $post->ID; ?>" class="post">
                   <h3 class="post-title"><?php the_title(); ?></h3>
                   <div class="post-content">
                     <?php the_content(); ?>
                   </div>
                 </div>
                 <?php endwhile; //end the loop ?>
               <?php else : ?>
                 <p>There are no posts to display.</p>
               <?php endif; ?>
             </div><!-- #campaigns -->
       		</div><!-- #content -->
       	</div><!-- #primary -->
   
       <?php get_sidebar(); ?>
       <?php get_footer(); ?>
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[My Post Order] Troubles with WP_Query object](https://wordpress.org/support/topic/troubles-with-wp_query-object/)
 *  Thread Starter [cfetr](https://wordpress.org/support/users/cfetr/)
 * (@cfetr)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/troubles-with-wp_query-object/#post-3387802)
 * Edit – I am aware that there is a missing closing parenthesis. That is only a
   typo in this post.

Viewing 7 replies - 1 through 7 (of 7 total)