21:11主题的三个问题

时间:2011-07-20 作者:jmixmaster

我在2011年有几件事需要帮助。

我放在标题中的徽标大小调整为578px乘以160px,而它应该是326px乘以90px。

我想简单介绍一下控制这一点的php代码:http://i55.tinypic.com/33tsehh.jpg

我在信息框中添加了渐变,还添加了关于作者的文字和简历行。我对PHP不是很了解,所以我不想在没有帮助的情况下弄乱它。

<?php
        /* translators: used between list items, there is a space after the comma */
        $categories_list = get_the_category_list( __( \', \', \'twentyeleven\' ) );


        /* translators: used between list items, there is a space after the comma */
        $tag_list = get_the_tag_list( \'\', __( \', \', \'twentyeleven\' ) );
        if ( \'\' != $tag_list ) {
            $utility_text = __( \'This entry was posted in %1$s and tagged %2$s by <a href="%6$s">%5$s</a>.\', \'twentyeleven\' );
        } elseif ( \'\' != $categories_list ) {
            $utility_text = __( \'This entry was posted in %1$s by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.\', \'twentyeleven\' );
        } else {
            $utility_text = __( \'This entry was posted by <a href="%6$s">%5$s</a>. Bookmark the <a href="%3$s" title="Permalink to %4$s" rel="bookmark">permalink</a>.\', \'twentyeleven\' );
        }


        printf(
            $utility_text,
            $categories_list,
            $tag_list,
            esc_url( get_permalink() ),
            the_title_attribute( \'echo=0\' ),
            get_the_author(),
            esc_url( get_author_posts_url( get_the_author_meta( \'ID\' ) ) )
        );
    ?>
我想知道如何在头版添加每篇文章的特色图片,因为它似乎没有编码http://gscdesigns.co.cc/谢谢

1 个回复
SO网友:Jae

添加帖子缩略图是非常简单的开放内容。php,如果您在主页上使用摘录,请查找

<?php the_excerpt(); ?>

然后将此添加到该行的正上方

<?php the_post_thumbnail(\'thumbnail\', \'class=alignleft\'); ?>

如果您没有使用摘录,请将其添加到上面

<?php the_content( __( \'Continue reading <span class="meta-nav">&rarr;</span>\', \'twentyeleven\' ) ); ?>

如果您想为您的帖子缩略图指定特定的图像大小,可以在函数中添加类似的内容。php,将140、140更改为您想要的任何大小。

add_image_size(\'excerpt-thumbnail\', 140, 140, true);

然后更改

<?php the_post_thumbnail(\'thumbnail\', \'class=alignleft\'); ?>

<?php the_post_thumbnail(\'excerpt-thumbnail\', \'class=alignleft\'); ?>

然后只需在帖子中添加一幅特色图片。最好通过创建子主题来实现这一点。

前两个问题不确定你在问什么,也许你可以再解释一下。

结束