从Wordpress循环OUT获取特定的东西?

时间:2010-11-05 19:35:10

标签: wordpress select loops

我完全迷失了:)

我有一个输出的循环:

  • POST ITLE
  • 发布内容
  • POST META

和...

在每个帖子中,我都在CONTENT区域的开头有一个图像。

如何将此图像放在标题上并执行以下操作:

  • 内容第一张图片
  • POST TITLE
  • 内容的其余部分
  • POST META

我不知道如何让事情摆脱困境。

我很想在这里看到一些片段,我想我应该使用wp查询,但之前从未这样做过。

非常感谢。

MY CURRENT LOOP CODE(从我正在学习的TwentyTen默认Wordpress主题中“被盗”):

/* I WANT TO PUT CONTENT IMAGE HERE AND TAKE IT FROM 6TH LINE OF THE CODE BELOW:*/      
<article <?php post_class(); ?>>
                <header>
                    <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'twentyten' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>
                </header>
                        <?php the_content( __( 'Continue reading <span class="meta-nav">&rarr;</span>') ); ?> /* I WANT TO TAKE FIRST IMAGE FROM HERE BADLY :) :) :) */
                    <?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>  

        <?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
                <div class="entry-summary">
                    <?php the_excerpt(); ?>
                </div><!-- .entry-summary -->
        <?php else : ?>

        <?php endif; ?>

                <div class="entry-utility">
                    <?php if ( count( get_the_category() ) ) : ?>
                        <span class="cat-links">
                            <?php printf( __( '%2$s'), 'entry-utility-prep entry-utility-prep-cat-links', get_the_category_list( ', ' ) ); ?>
                            <time><?php the_time('m F Y') ?></time>  
                        </span>
                    <?php endif; ?>
                    <?php
                        $tags_list = get_the_tag_list( '', ', ' );
                        if ( $tags_list ):
                    ?>
                        <span class="tag-links">
                            <?php printf( __( '<span class="%1$s">Tagged</span> %2$s', 'twentyten' ), 'entry-utility-prep entry-utility-prep-tag-links', $tags_list ); ?>
                        </span>
                    <?php endif; ?>
                    <span class="comments-link"><?php comments_popup_link( __( 'Leave a comment'), __( '1 Comment'), __( '% Comments') ); ?></span>
                    <?php edit_post_link( __( 'Edit'), '<span class="edit-link">', '</span>' ); ?>
                </div><!-- .entry-utility -->  
            </article><!-- #post-## -->

我知道这段代码并不完美,但此刻我只是在学习和玩耍:)

TNKS! :)

1 个答案:

答案 0 :(得分:0)

答案是“特色图片”功能......:)