Facebook只显示我帖子100px的预览缩略图?

时间:2011-03-21 作者:janoChen

我正在使用Facebook and Digg Thumbnail generator 和[FaceBook共享(新)],2

如您所见,如果图像为100px,则当我按下共享按钮时,会显示缩略图:

enter image description here

但对于宽度为300px的图像:

enter image description here

拇指预览不会显示:

enter image description here

front-page.php:

<?php
/**
 * Template Name: Front Page
 * @package WordPress
 * @subpackage Prominent
 * @since Prominent 1.0
 */
get_header(); ?>
<div id="tagline">
    <div class="container">
    </div><!-- .container -->
</div><!-- #tagline -->
<div id="content">
    <div class="container">
        <div id="mainbar">
            <?php while ( have_posts() ) : the_post(); ?>
                <div class="content-block-2">
                    <?php the_content(); ?>
                </div>
            <?php endwhile; ?>
            <?php /* Display navigation to next/previous pages when applicable */ ?>
            <?php if (  $wp_query->max_num_pages > 1 ) : ?>
                <div id="prev"><?php next_posts_link( __( \'&larr; Older posts\', \'twentyten\' ) ); ?></div>
                <div id="next"><?php previous_posts_link( __( \'Newer posts &rarr;\', \'twentyten\' ) ); ?></div>
            <?php endif; ?>
        </div><!-- #mainbar -->
    </div><!-- .container -->
</div><!-- #content-bottom -->
<?php get_footer(); ?>
有什么解决这个问题的建议吗?

2 个回复
最合适的回答,由SO网友:janoChen 整理而成

终于找到了原因。Facebook只允许使用3:1比例的图像。

SO网友:Tom

你可以加上Open Graph tags 向你的模板提示Facebook使用哪些图像和文本。

结束