The adding of keyname did not work.
This works but you see it is two loops not one. (I’m doing this as a default)
<?php
$featured = new WP_Query('cat=3');
if ($featured->have_posts()) : while ($featured->have_posts()) : $featured->the_post();
// Regular loop stuff here!!!
?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>><h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'Tweaked' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="entry-meta">
<?php Tweaked_posted_on(); ?>
</div><!-- .entry-meta -->
<div class="entry-summary">
<!-- // The Post Thumbnail function is active by default, but this line of php will make it display. --> <?php if( get_the_post_thumbnail($post->ID, 'thumbnail') ) the_post_thumbnail(array(98,68), array("class" => "alignleft post_thumbnail")); ?><!-- //Post Thumbnail Ends-->
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
</div>
<?php endwhile;
endif;
$featured2 = new WP_Query('post_type=page&meta_value=featured&order=DESC');
if ($featured2->have_posts()) : while ($featured2->have_posts()) : $featured2->the_post();
// Regular loop stuff here!!!
?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>><h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'Tweaked' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="entry-meta">
<?php Tweaked_posted_on(); ?>
</div><!-- .entry-meta -->
<div class="entry-summary">
<!-- // The Post Thumbnail function is active by default, but this line of php will make it display. --> <?php if( get_the_post_thumbnail($post->ID, 'thumbnail') ) the_post_thumbnail(array(98,68), array("class" => "alignleft post_thumbnail")); ?><!-- //Post Thumbnail Ends-->
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
</div>
<?php endwhile;
endif;
//Reset Query
wp_reset_query();?>