我没有使用该插件,但我猜您的函数get\\u the\\u image()不接受该参数作为数组的一部分。
我将首先检查该自定义函数是否处于活动状态。如果关闭该插件,页面上将出现错误:
<?php if ( function_exists( \'get_the_image\' ) ) { get_the_image(); } ?>
然后只需如上所述插入参数。
你可以试试这个(未测试)这个在循环中吗?如果不是,这可能对你不起作用。
<?php
$category = get_the_category();
if ( function_exists( \'get_the_image\' ) ) get_the_image( array( \'meta_key\' => \'feature_img\', \'size\' => \'medium\', \'width\' => \'300\', \'height\' => \'170\', \'image_class\' => \'feature\', \'default_image\' => \'http://www...../uploads/img_cat_\' . $category[0]->cat_name . \'.jpg\' ) );
?>