Last active
August 29, 2015 17:43
-
-
Save alexanderjsingleton/a7e7cad8d04b62df3cb2 to your computer and use it in GitHub Desktop.
regex for php conversion
This file contains hidden or 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
Executed w/ Vim: | |
``` | |
%s/src="\(img\/.\+\)"/<?php echo get_template_directory_uri(); ?>\/\1/g | |
%s/src="\(js\/.\+\)"/<?php echo get_template_directory_uri(); ?>\/\1/g | |
%s/href="\(css\/.\+\)"/<?php echo get_template_directory_uri(); ?>\/\1/g | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
^Replace script^