缩略图位于媒体网格插件->网格构建器->从网格列表中选择任意网格->small缩略图位于“选择项目”下拉列表前面
缩略图不会在线显示,但在本地运行良好。你能告诉我从哪里开始吗?这是图片enter link description here
发布于 2013-11-06 06:55:01
对于缩略图的裁剪,你使用插件是不合适的:
尝试使用此代码,它将帮助您的所有其他缩略图在您的整个网站…
将以下代码放入function.php
文件中
if ( function_exists( 'add_image_size' ) ) {
add_image_size( 'custom-post-thumb', 140, 140,true );
}
现在在你的代码中使用下面的代码:
<?php if ( has_post_thumbnail()) : ?>
<?php the_post_thumbnail('custom-post-thumb', array('class' => 'attachment')); // here array('class' => 'attachment') apply if you want to apply class to that anchor tag ?>
<?php endif; ?>
谢谢
https://stackoverflow.com/questions/19804148
复制相似问题