Hi Chris & em hr,
Thanks for the solution of the new meta-boxes on the first page of this thread.
It's working for me but when the posts output to my specific pages they are excerpted i.e.truncated.
How do I change the code to allow the full post to come through for the page loop?
I am guessing its this bit that I need to change not the laying out the custom fields.
function child_theme_custom_query() {
global $post;
if (get_post_meta($post->ID, 'page_query_posts', true)) {
$limit = get_post_meta($post->ID, 'limit', true);
$category = get_post_meta($post->ID, 'category',true);
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts('cat=' .$category. '&showposts=' . $limit . '&paged=' . $paged );
$wp_query->is_archive = true; $wp_query->is_home = false;
}
}
add_action('thematic_above_indexloop', 'child_theme_custom_query');
Thanks in advance
D