开发者 |
Shoppdeveloper.com
Barry Hughs |
---|---|
更新时间 | 2017年4月15日 18:00 |
捐献地址: | 去捐款 |
PHP版本: | 3.4.2 及以上 |
WordPress版本: | 4.7.3 |
版权: | GPLv3 or later |
版权网址: | 版权信息 |
shopp-sfi
directory to the wp-content/plugins
directoryNo. Even if you have configured Shopp to store its images in the database, Shopp Featured Images simply pulls in WordPress's own media handling tools so any post thumbs will be saved as regular files and can be re-used across posts/products.
Of course. = I don't want my coverimages replaced by featured images Add this code to your functions.php add_filter('shopp_auto_featured_thumb', 'do_not_replace_coverimages'); function do_not_replace_coverimages() { return false; }