Để đổi tên cũng như đường dẫn wp-content trong wordpress sẽ giúp ta tăng thêm 1 phần bảo mật cho wordpress , để thay thư mục wp-content ta làm như sau
1 đổi tên wp-content thành tên thư mục mới ở đây là từ wp-content thành assets
2 . mở file wp-config.php
thêm vào các dòng ngay trên require_once(ABSPATH . 'wp-settings.php');
define ('NEW_CONTENT_FOLDERNAME', 'assets');
/* thay assset bằng tên thư mục mới của wp-content */
define ('WP_CONTENT_DIR', ABSPATH . NEW_CONTENT_FOLDERNAME); define('WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST'] . '/');
define('WP_CONTENT_URL', WP_SITEURL . NEW_CONTENT_FOLDERNAME);
3 để hình ảnh hiện thị cũng như nhận đường dẫn mới ta cần thêm vào trong file functions.php của themes hiện đang sử dụng :
define('WP_UPLOADSURL', 'http://' . $_SERVER['HTTP_HOST'] . '/');
add_filter( 'the_content', function( $upload_dir_uri ){ return str_replace( WP_UPLOADSURL . '/wp-content/', WP_UPLOADSURL . '/assets/', $upload_dir_uri );
});
No comments: