缩略图图片位于Media-Grid插件内 - >网格生成器 - >从网格列表中选择任何网格 - >在“选择项目”下拉列表前面的小缩略图图像
缩略图图片不会在线显示,但在本地工作正常。 你能告诉我从哪里开始吗? 这是图像 enter link description here
答案 0 :(得分:1)
对于裁剪缩略图,你不适合使用插件:
尝试使用此代码,它将帮助您完成整个站点中的所有其他缩略图...
将此代码放入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; ?>
由于