Created
August 9, 2022 19:58
-
-
Save maheshwaghmare/7c086cdf0837f5864596945086c603c8 to your computer and use it in GitHub Desktop.
Remove the spaces - See https://wp.me/P4Ams0-9Sn
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if ( ! function_exists( 'prefix_remove_spaces' ) ) : | |
/** | |
* Remove spaces | |
* | |
* @param array $args Arguments. | |
* @return array | |
* | |
* @see https://wp.me/P4Ams0-9Sn | |
* @author Mahesh M. Waghmare <[email protected]> | |
*/ | |
function prefix_remove_spaces( $args = array() ) { | |
$args['remove_spaces'] = false; | |
return $args; | |
} | |
add_filter( 'copy_the_code_localize_vars', 'prefix_remove_spaces' ); | |
endif; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment