如何将 wordpress 特色图像的大小调整为 620 宽度,调整循环中的任何相应高度,但不是永久调整?
这是我正在尝试执行此操作的网站: http://increaseinwebtraffic.com/marywood/deals/
顶部的几笔交易宽度大于 620,但底部的交易宽度较小。我尝试使用下面的代码但没有成功。我用谷歌搜索了一下,只找到了永久的解决方案。
<?php the_post_thumbnail( array(620,295) ); ?>
任何帮助表示赞赏。
Here is the website I am attempting this on: http://increaseinwebtraffic.com/marywood/deals/
The top few deals are larger than 620 width, but the bottom ones are smaller. I tried to use the code below with no success. I've Googled around and only found permanent solutions.
<?php the_post_thumbnail( array(620,295) ); ?>
Any help is appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请尝试以下代码。
http://www.boxoft。净/2011/10/显示-the-wordpress-featured-image-without-stretching-it/
Please try the following code.
http://www.boxoft.net/2011/10/display-the-wordpress-featured-image-without-stretching-it/
围绕上面的代码进行设置,然后使用 CSS 设置宽度和高度怎么样?像这样的东西:
CSS
HTML / PHP
What about putting a around that an setting the above code and then using CSS to set the width and height? Something like this:
CSS
HTML / PHP