how can i take out the version in my main.css file? [duplicate]

You can remove query strings from scripts and style sheets with a function in the theme’s functions.php file. // Remove Query Strings from enqueue scripts add_filter( ‘style_loader_src’, ‘remove_query_string’ ); // CSS files add_filter( ‘script_loader_src’, ‘remove_query_string’ ); // javascripts function remove_query_string( $url ) { return remove_query_arg( ‘ver’, $url ); } Be sure you have made a … Read more

WordPress Update 4.3.1 [closed]

this is the line causing the problem for you. define( ‘WP_CONTENT_URL’, get_option(‘siteurl’) . ‘/wp-content’); this could be get_option(‘siteurl’) is not a string. please check what you having at wp-option table and siteurl row. If possible check what you are getting when you run get_option(‘siteurl’); this line

WordPress updater conflict

Short answer is no — there is no way to completely and reliably prevent your public plugin/theme coming up as duplicate if WP org thinks that it is. There are limited things you can do while it’s active (intercept update requests, unfortunately there isn’t even canonical up–to–date tutorial on that), but that goes out of … Read more