我已将我的wp-content文件夹更改为名为stuff的文件夹,并尝试使用函数而不是SQL查询更改现有帖子中的图像网址...
我已将此放在我的function.php中,希望它可以正常工作,但图片仍在使用' wp-content'文件夹?
define('WP_UPLOADSURL', 'http://' . $_SERVER['HTTP_HOST']);
add_filter( 'pre_option_upload_url_path', function( $upload_dir_uri ){
return str_replace( WP_UPLOADSURL . '/wp-content/', WP_UPLOADSURL . '/stuff/', $upload_dir_uri );
});
答案 0 :(得分:0)
我只需要将过滤器添加到the_content
而不是pre_option_upload_url_path
。
define('WP_UPLOADSURL', 'http://' . $_SERVER['HTTP_HOST'] . '/');
add_filter( 'the_content', function( $upload_dir_uri ){
return str_replace( WP_UPLOADSURL . '/wp-content/', WP_UPLOADSURL . '/stuff/', $upload_dir_uri ); /* Again Change stuff */
});