0

无论如何我可以将图像链接默认设置为帖子本身吗?我不想每次都在媒体上传器中设置图片链接。我获取帖子内容的代码是这样的:

                        <?php if (!$is_paged && $archives == "false") { ?>
                            <?php woo_image('class=thumbnail&width='.get_option('woo_home_thumb_width').'&height='.get_option('woo_home_thumb_height')); ?> 
                            <div class="post-title">
                                <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h3>
                                <p class="post-details"><?php _e('Posted on',woothemes); ?> <?php the_time('d. M, Y'); ?> <?php _e('by',woothemes); ?>  <?php the_author_posts_link(); ?>.</p>

                            </div>
                        <?php } else { ?>
                            <?php woo_image('class=alignleft thumbnail&width='.get_option('woo_thumb_width').'&height='.get_option('woo_thumb_height')); ?> 
                            <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
                            <p class="post-details"><?php _e('Posted on',woothemes); ?> <?php the_time('d. M, Y'); ?> <?php _e('by',woothemes); ?>  <?php the_author_posts_link(); ?>.</p>
                          <!--  <div class="comment-cloud">
                                <a href="<?php comments_link(); ?>"><?php comments_number('0','1','%'); ?></a>
                            </div> -->
                        <?php } ?> <?php global $more; $more = 0;?>

                        <?php if ( get_option('woo_content') == "true" ) { the_content('Read More >>'); } else { the_excerpt();?><?php } ?>


                    </div> 
                    <!-- Normal Post Ends -->

我所做的是在其下方发布带有几行的图像并插入阅读更多标签。有没有办法像标题一样使用帖子中的第一张图片并链接到文章?

4

1 回答 1

0

在页面顶部

<?php
global $post;
global $wpdb;

?>

<a href="<?php echo get_permalink($post->ID); ?>" >
      <img src="your_source_here" title="image" />
</a>

get_parmalink();将分别带您进入帖子的详细信息页面。

于 2013-09-17T05:02:44.917 回答