StudioPress Community Forums
  StudioPress Community Forums > Forums > General Discussion
For help and support, access to your downloads, or to manage your account please log into My StudioPress.

These forums have been set to read-only so you can browse the existing topics for any questions you may have.

For general discussion on WordPress, CSS and design (NOT for support) visit the new Community Forums.
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 09-20-2012, 04:33 PM
jjaycallejas jjaycallejas is offline
Registered User
Pro Plus Member
 
Join Date: Nov 2011
Posts: 154
Default Custom Query question

Hi,

Im utilizing wp_query to customize an archive page like so

PHP Code:
function _cpt_testimonials_menu() {
    
$args = array(
        
'post_type' => 'aero_testimonials',
        
'order' => 'ASC',
        
'posts_per_page' => '-1',
    );
    
$tips = new WP_Query$args );
    if( 
$tips->have_posts() ):
            echo 
'<p>';
                while ( 
$tips->have_posts() ) : $tips->the_post();
                    echo 
'<h2>' get_the_title() . '</h2>';
                    echo 
get_the_post_thumbnail();
                    echo 
genesis_do_post_content();

                    
// echo '<a href="' . get_permalink() . '">' . get_the_post_thumbnail() . '</a>';
                
endwhile;
            echo 
'</p>';
    endif;
    
wp_reset_postdata();

I'm having a bit of trouble echoing out some custom metabox fields. I've tried

PHP Code:
echo customfieldID(); 
but can't get any output. I can get post content, thumbnail, title, and etc but no custom field. Any ideas?
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Question about Archive query and Permalinks jjaycallejas General Discussion 5 09-17-2012 12:11 PM


All times are GMT -5. The time now is 04:25 PM.

Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.