How to rename theme's root directory?

I want to rename the theme's root folder for security purpose.

I put these in wp-config.php file:

But I want to rename the theme's root directory also:

 define( 'WP_CONTENT_DIR', $_SERVER['DOCUMENT_ROOT'] . '/assets' );
 define( 'WP_CONTENT_URL', 'http://www.domain.in/assets');

 define( 'WP_PLUGIN_DIR', $_SERVER['DOCUMENT_ROOT'] . '/extension' );
 define( 'WP_PLUGIN_URL', 'http://www.domain.in/assets/extension');

So, how to rename the theme's root folder like this way?

Topic theme-roots Wordpress

Category Web


Although @TheDeadMedic is technically correct and you can't rename the themes folder. You CAN change some of the public facing urls.

For example, you can make a new folder assets/new-themes and add your CSS, and images there. Then make a theme include your styles.css (which can be just the header info) and anytime in your theme you want to refer to any image, css, or JS (public urls) set that to your new theme folder (or CDN if your fancy)

I'm not sure how changing the name of the directory would improve security as there are so many ways to find out if someone is using WP but that's just one way to apply a similar effect.

UPDATE: Looks like you can use the hook register_theme_directory() to add an additional theme dir. (see link to duplicate question above)

About

Geeks Mental is a community that publishes articles and tutorials about Web, Android, Data Science, new techniques and Linux security.