Unfortunately not at the moment. If you look in wp-includes/default_constants.php
, the WP_CONTENT_DIR
and other constants all have a if ( ! defined(constant) )
check before them.
WPINC
(the wp-includes
constant) does not. It’s defined in wp-settings.php
, and has no if ( ! defined(WPINC) )
check, so defining it before hand (in your wp-config.php
) would just result in an error.
Also, altering core you could do this, but as soon as you update WordPress, Core files would be reverted, and therefore it would revert back to wp-includes
.
I suggestion just masking your site with WordPress in a subdirectory (call it xadw
or something nobody would guess) and just set the home URL to be the actual domain. Then put your wp-content
folder in another folder, so it won’t be obviously when people look at uploads, etc.
Related Posts:
- Serving precompressed content with Brotli on Apache
- How can I avoid code duplication for a blog with lots of source code?
- What’s the correct way to include files in WordPress TwentyTen theme with it’s own jquery scripts and css?
- ABSPATH not working! Any idea why?
- Get current user data from external PHP page
- External system integration with wordpress
- Why does get_template_part() break variables?
- How to pass variables with get_template_part?
- Problems Including File
- How to include core files into plugin
- How to check if txt file exists inside template folder?
- What’s the best way to ‘include’ a file in WordPress?
- locate_template function – File not getting included
- Can not include file from plugin into theme
- Include tags from array, ignore the rest in get_the_tags
- PHP files included within functions.php don’t work from admin area
- Wp Enviroment problem with included file
- Having trouble linking to file using relative path
- How can I include an external file in a post or page?
- Including php file in directory above WordPress installation
- add_feed failed to open stream
- Load content From Include File within plugin
- including Zend Gdata library path error
- What about “inc” (include) files and Child Theming? Is it possible?
- Make changes in /includes/http.php update safe
- Need to override file included in parent theme
- Class works in Admin, not found on Front End
- if statement parent page for child pages
- add_action outside a plugin
- Add page as static html into another page
- Dynamically determine URI to scripts and styles included with a class which could be added from plugin/theme/child theme/mu plugin
- Include another HTML file in a HTML file
- C++ #include guards
- How do I run a file on localhost?
- class not declared in scope – even though .h was included
- Already defined in .obj – no double inclusions
- How do you #include files in java?
- Error “Unterminated conditional directive” in cross-referencing headers
- Difference between require, include, require_once and include_once?
- cmath vs math.h (And similar c-prefixed vs .h extension headers)
- How to add a default include path for GCC in Linux?
- Eclipse CDT: Symbol ‘cout’ could not be resolved
- how to get wp-content folder in wordpress?
- Is there any way to use get_template_part() with folders?
- Order by & include array by specific post ids
- Include PHP file in Content using [shortcode]
- bloginfo(‘stylesheet_directory’) vs. get_stylesheet_directory_uri() and include(‘file.php’) vs. get_template_part()
- Sort users in get_users() in custom order
- passing argument to get_template_part() or a better way to code
- Include files for a plugin not including
- Adding rich text editor to my plugin
- Include Javascript as Plain (No file inclusion)
- Include Class File in WordPress
- nowplaying.include.php Will Not Display Results
- Change title and meta description in included page (not template)
- Include file from higher level
- Include a specific page in your template
- Include files in child themes, declare in functions.php
- Hardening wordpress: blocking /includes with htaccess
- Include multiple custom post types [closed]
- How can I defer these JS files?
- Custom theme: Alternatives to long list of ‘include’ in functions.php
- How to display / include a specific jpg on a page
- PHP help get_template_directory + PHP include
- Creating plugin using simple_html_dom parser?
- If a page does not exist, include a different page?
- Override file inside inc in child theme
- Is it possible to include an HTML flat-file website inside a WordPress theme?
- What is the proper way to include a PHP framework into my theme?
- Can I have an additional functions.php file in WordPress?
- wp_star_rating() – Adding a 5 star rating system to theme
- confused about wp_list_pages() function – how to display selected top pages with all their subpages
- Unable to point the child theme directory even using get_stylesheet_directory()
- How to get the form code from the edit page of a specific post?
- Include a file that has a function in it
- Is it ok to chop index.php and include files?
- file.php not loaded?
- Custom metabox not working
- How and when to include shortcode source files
- require get_template_directory() . ‘path/to-my/file.php’ BREAKS customize > themes functionality
- Adding a second loop breaks everything
- “Cannot modify header information – headers already sent by” while using get_stylesheet_directory_uri()
- How can I include custom Gutenberg Blocks in a theme?
- Before & After Content – After Content directly below Before Content when using require_once
- Including content into an add_shortcode() function
- loading a php file to a specific page id
- PHP get_category() function redeclared
- How to write wordpress plugins faster to load?
- Push Shortcode parameter to template
- Using require_once for parent-directory not working but is working in sub-directories
- template_redirect and title
- Include inside sidebar
- Pages included in another page and duplicate content issues for SEO
- How can I include a file related to blog URL? Nothing seems to work
- WordPress blog set up
- Want to include ad code after related post
- Including a PHP file via a function that is part of a plugin?
- strange parse error when including a loop template within another template
- php include returns 1 as output with other outputs [closed]
- Display file contents within Plugin