Skip to content

Instantly share code, notes, and snippets.

@alanmarcos
Created March 9, 2016 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alanmarcos/86dd4d67a3059f27308e to your computer and use it in GitHub Desktop.
Save alanmarcos/86dd4d67a3059f27308e to your computer and use it in GitHub Desktop.
replace: {
start: {
src: ['<%= path %>/header.php', '<%= path %>/footer.php'],
overwrite: true,
replacements: [
{
from: '<?php bloginfo(\'template_directory\'); ?>/',
to: ''
},
{
from: '<?php bloginfo("template_directory"); ?>/',
to: ''
}
]
},
finish: {
src: ['<%= path %>/header.php', '<%= path %>/footer.php'],
overwrite: true,
replacements: [
{
from: "=\"js/",
to: "=\"<?php bloginfo(\"template_directory\"); ?>/js/"
},
{
from: "='js/",
to: "='<?php bloginfo(\"template_directory\"); ?>/js/"
},
{
from: "=\"css/",
to: "=\"<?php bloginfo(\"template_directory\"); ?>/css/"
},
{
from: "='css/",
to: "='<?php bloginfo(\"template_directory\"); ?>/css/"
},
{
from: "=\"images/",
to: "=\"<?php bloginfo(\"template_directory\"); ?>/images/"
},
{
from: "='images/",
to: "='<?php bloginfo(\"template_directory\"); ?>/images/"
}
]
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment