具有链接的图像网格的Facet WP插件显示代码

时间:2016-05-09 21:20:43

标签: php css wordpress plugins

我已经安装了Facet WP插件,并尝试使用帖子标题和链接下方的特色图片进行平方。它必须在图像网格中(我希望我使用正确的术语) - 每行3行和4行(总共12行)。

我已将项目设置为每页显示12个,但不知道如何以这种方式将php用于显示。

想要使用字体大小为18的h6,并在200px宽之后断开到另一行。有人可以帮忙吗?

<?php while ( have_posts() ): the_post(); ?>
<p><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
        <?php the_post_thumbnail( 'blog-square-sidebar' ); ?>
  </a></p>
<p><a href="<?php the_permalink(); ?>"><?php the_title( '<h6>', '</h6>', '</center>' ); ?></a></p>
  <a/></p>

<?php endwhile; ?>

有人可以帮我在此代码中添加以下内容:

  1. 使标题大小为18,并在200px宽之后折断到另一行。
  2. 在一行中有三张带有链接和标题的图片。总共有四行。
  3. 我真的很感激!

    注意:blog-square-sidebar已设置为230 x 230(在themes.php中),在链接图像之间留下35像素(我的页面总宽度为760像素)

    到目前为止,您可以看到我所拥有的内容:http://www.scrambledchefs.com/recipe-browser/

0 个答案:

没有答案