示例#1
0
function wicked_indexloop()
{
    // load the custom options
    global $childoptions;
    foreach ($childoptions as $value) {
        ${$value}['id'] = get_option($value['id'], $value['std']);
    }
    query_posts("posts_per_page=4&cat=" . $wicked_feature_cat);
    $counter = 1;
    if (have_posts()) {
        while (have_posts()) {
            the_post();
            ?>
    <div id="post-<?php 
            the_ID();
            ?>
" class="<?php 
            thematic_post_class();
            ?>
">
      <?php 
            thematic_postheader();
            if ($counter == 1 && has_post_thumbnail() && !is_paged()) {
                the_post_thumbnail('homepage-thumbnail');
            }
            ?>
      <div class="entry-content">
        <?php 
            the_excerpt();
            ?>
        <a href="<?php 
            the_permalink();
            ?>
" class="more"><?php 
            echo more_text();
            ?>
</a>
        <?php 
            $counter++;
            ?>
      </div>
    </div><!-- .post -->
  <?php 
        }
    } else {
        ?>
    <h2>Eek</h2>
    <p>There are no posts to show!</p>
  <?php 
    }
    wp_reset_query();
}
示例#2
0
function wicked_indexloop()
{
    query_posts("posts_per_page=4");
    $counter = 1;
    if (have_posts()) {
        while (have_posts()) {
            the_post();
            ?>
    <div id="post-<?php 
            the_ID();
            ?>
" class="<?php 
            thematic_post_class();
            ?>
">
      <?php 
            thematic_postheader();
            if ($counter == 1 && has_post_thumbnail() && !is_paged()) {
                the_post_thumbnail('homepage-thumbnail');
            }
            ?>
      <div class="entry-content">
        <?php 
            the_excerpt();
            ?>
        <a href="<?php 
            the_permalink();
            ?>
" class="more"><?php 
            echo more_text();
            ?>
</a>
        <?php 
            $counter++;
            ?>
      </div>
    </div><!-- .post -->
  <?php 
        }
    } else {
        ?>
    <h2>Eek</h2>
    <p>There are no posts to show!</p>
  <?php 
    }
    wp_reset_query();
}
	            <?php 
// calling the widget area 'page-top'
get_sidebar('page-top');
the_post();
thematic_abovepost();
?>
	            
				<div id="post-<?php 
the_ID();
echo '" ';
if (!THEMATIC_COMPATIBLE_POST_CLASS) {
    post_class();
    echo '>';
} else {
    echo 'class="';
    thematic_post_class();
    echo '">';
}
// creating the post header
thematic_postheader();
?>
	                
					<div class="entry-content">
	
	                    <?php 
the_content();
wp_link_pages("\t\t\t\t\t<div class='page-link'>" . __('Pages: ', 'thematic'), "</div>\n", 'number');
edit_post_link(__('Edit', 'thematic'), '<span class="edit-link">', '</span>');
?>
	
					</div><!-- .entry-content -->
function thematic_tag_loop()
{
    while (have_posts()) {
        the_post();
        ?>

			<div id="post-<?php 
        the_ID();
        ?>
" class="<?php 
        thematic_post_class();
        ?>
">
    			<?php 
        thematic_postheader();
        ?>
				<div class="entry-content">
<?php 
        thematic_content();
        ?>

				</div>
				<?php 
        thematic_postfooter();
        ?>
			</div><!-- .post -->

		<?php 
    }
}
示例#5
0
    /**
     * The Tag loop
     * 
     * Located in tag.php
     * 
     * Override: childtheme_override_tag_loop
     */
    function thematic_tag_loop()
    {
        while (have_posts()) {
            the_post();
            // action hook for insterting content above #post
            thematic_abovepost();
            ?>

				<?php 
            echo '<div id="post-' . get_the_ID() . '" ';
            // Checking for defined constant to enable Thematic's post classes
            if (!THEMATIC_COMPATIBLE_POST_CLASS) {
                post_class();
                echo '>';
            } else {
                echo 'class="';
                thematic_post_class();
                echo '">';
            }
            // creating the post header
            thematic_postheader();
            ?>
     				
					<div class="entry-content">
					
						<?php 
            thematic_content();
            ?>

					</div><!-- .entry-content -->
					
					<?php 
            thematic_postfooter();
            ?>
					
				</div><!-- #post -->

			<?php 
            // action hook for insterting content below #post
            thematic_belowpost();
        }
    }
    function thematic_tag_loop()
    {
        while (have_posts()) {
            the_post();
            thematic_abovepost();
            ?>

				<div id="post-<?php 
            the_ID();
            echo '" ';
            if (!THEMATIC_COMPATIBLE_POST_CLASS) {
                post_class();
                echo '>';
            } else {
                echo 'class="';
                thematic_post_class();
                echo '">';
            }
            thematic_postheader();
            ?>
					<div class="entry-content">
<?php 
            thematic_content();
            ?>

					</div><!-- .entry-content -->
					<?php 
            thematic_postfooter();
            ?>
				</div><!-- #post -->

			<?php 
            thematic_belowpost();
        }
    }
示例#7
0
function gallery_single_post()
{
    global $post;
    ?>
<div id="post-<?php 
    the_ID();
    ?>
" class="<?php 
    thematic_post_class();
    ?>
"> 
            <ul>
            <?php 
    if (get_post_meta($post->ID, 'pickle-name')) {
        ?>
<li class="maker_name"><?php 
        echo get_post_meta($post->ID, 'pickle-name', $single = true);
        ?>
</li><?php 
    }
    if (get_post_meta($post->ID, 'pickle-maker')) {
        ?>
<li class="maker_name"><?php 
        echo get_post_meta($post->ID, 'pickle-maker', $single = true);
        ?>
</li><?php 
    }
    if (get_post_meta($post->ID, 'store-purchased')) {
        ?>
<li class="maker_name"><?php 
        echo get_post_meta($post->ID, 'store-purchased', $single = true);
        ?>
</li><?php 
    }
    if (get_post_meta($post->ID, 'store-location')) {
        ?>
<li class="maker_name"><?php 
        echo get_post_meta($post->ID, 'store-location', $single = true);
        ?>
</li><?php 
    }
    if (get_post_meta($post->ID, 'price')) {
        ?>
<li class="maker_name"><?php 
        echo get_post_meta($post->ID, 'price', $single = true);
        ?>
</li><?php 
    }
    if (get_post_meta($post->ID, 'vegetable-type')) {
        ?>
<li class="maker_name"><?php 
        echo get_post_meta($post->ID, 'vegetable-type', $single = true);
        ?>
</li><?php 
    }
    if (get_post_meta($post->ID, 'flavor')) {
        ?>
<li class="maker_name"><?php 
        echo get_post_meta($post->ID, 'flavor', $single = true);
        ?>
</li><?php 
    }
    if (get_post_meta($post->ID, 'texture')) {
        ?>
<li class="maker_name"><?php 
        echo get_post_meta($post->ID, 'texture', $single = true);
        ?>
</li><?php 
    }
    ?>
 </ul>
        </div>
<?php 
}
示例#8
0
function tm_single_post()
{
    ?>
			<div id="post-<?php 
    the_ID();
    ?>
" class="<?php 
    thematic_post_class();
    ?>
">
    			<?php 
    tm_postheader();
    ?>
				<div class="entry-content">
<?php 
    thematic_content();
    ?>

					<?php 
    wp_link_pages('before=<div class="page-link">' . __('Pages:', 'thematic') . '&after=</div>');
    ?>
				</div>
				<?php 
    thematic_postfooter();
    ?>
			</div><!-- .post -->
<?php 
}
示例#9
0
function gallery_tag_loop()
{
    global $post;
    /* Count the number of posts so we can insert a widgetized area */
    $count = 1;
    while (have_posts()) {
        the_post();
        ?>

			<div id="post-<?php 
        the_ID();
        ?>
" class="<?php 
        thematic_post_class();
        ?>
">
				<div class="entry-content">
			<?php 
        childtheme_post_header();
        ?>
        <a href="<?php 
        echo the_permalink();
        ?>
"><span class="slide-title"><?php 
        echo the_title();
        ?>
</span><img class="thumbnail" src="<?php 
        if (get_post_meta($post->ID, 'thumbnail')) {
            echo get_post_meta($post->ID, 'thumbnail', $single = true);
        } else {
            bloginfo('url');
            echo "/wp-content/themes/gallery/images/thumbnail-default.jpg";
        }
        ?>
" width="125" height="125" alt="<?php 
        echo the_title();
        ?>
" /></a>
				</div>
			</div><!-- .post -->

    <?php 
        comments_template();
        if ($count == $thm_insert_position) {
            get_sidebar('index-insert');
        }
        $count = $count + 1;
    }
}