从缩略图中删除标题标签

时间:2012-10-24 作者:Joe Bobby

我当前正在使用以下内容向我的页面添加缩略图:<?php the_post_thumbnail( \'category-thumb\' ); ?> 这就是功能。php:

if ( function_exists( \'add_image_size\' ) ) {
    add_image_size( \'category-thumb\', 200, 142 );
}
如何阻止添加标题标记?

1 个回复
最合适的回答,由SO网友:Wyck 整理而成

此过滤器将从所有图像中完全删除它,您可以添加条件以仅影响某些图像。

function remove_img_title($atts) {
    unset($atts[\'title\']);
    return $atts;
}
add_filter(\'wp_get_attachment_image_attributes\',\'remove_img_title\');
如果您想使用<?php the_post_thumbnail( \'category-thumb\' ); ?>

您可以使用第二个$attr 所以你的标题标签看起来像title=" ".

这将是:

$default_attr = array(\'title\'   =>  \' \');
the_post_thumbnail(\'post-thumbnails\', $default_attr);

结束

相关推荐

Problem uploading images

多站点3。4.1 wordpress我用htaccess规则重定向了wp admin,并通过wp config重命名了wp内容和插件http://codex.wordpress.org/Editing_wp-config.php#Moving_wp-content现在我不能再上传图片了。当我尝试上载图像时,它会开始处理,但随后出现http错误,或者说您确定要这样做,但不允许我上载图像。this is in .htacess RewriteEngine On RewriteBase /