我正在使用this plugin 用于将图像附加到自定义分类。插件的函数返回所附术语的图像,如下所示:
function get_wp_term_image($term_id){
return get_option(\'_category_image\'.$term_id);
}
它工作得很好,但我想调整返回图像的大小,因为我在一个页面中使用它,该页面显示了所有具有相对拇指的分类类别。这意味着,如果你上传一个大图像,你就会得到它,页面会变得很重。我尝试在我的页面循环中添加此挂钩,但没有成功:
$term_id = $term->term_id;
if (function_exists(\'get_wp_term_image\'))
{
$meta_image = get_wp_term_image($term_id);
//tried this
$term_image = wp_get_attachment_image_src($term_id, \'smalltax\');
//and this
$image_id = attachment_url_to_postid($meta_image);
//no success
}
在第一种情况下,我假设
wp_get_attachment_image_src
胡克认为这个附件来自于任何id,但我错了在第二种情况下,我想
$image_id
使用
attachment_url_to_postid
挂钩,然后通过其他调整调整调整大小您能提供解决方案吗?甚至修改插件本身。谢谢