cfetr
Forum Replies Created
-
Forum: Hacks
In reply to: edit-tag.php Sortable Column not sorting correctlyI 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
In reply to: question about get_post_meta()Thanks, that is what I figured.
Forum: Plugins
In reply to: [MediaElement.js - HTML5 Video & Audio Player] Why Audioplayer is shown twiceFor 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.
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
In reply to: [Secure Custom Fields] New custom fields not displayingI 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
In reply to: [My Post Order] Troubles with WP_Query objectThanks 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
In reply to: [My Post Order] Troubles with WP_Query objectEdit – I am aware that there is a missing closing parenthesis. That is only a typo in this post.