Created
March 13, 2015 14:45
-
-
Save AlexMcowkin/1d4490467a45a1c27779 to your computer and use it in GitHub Desktop.
WP constants usage
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 | |
// в файле wp-config.php добавляем константу | |
define('MY_THEME', 'http://mysite.loc/your-url-here/') | |
// а уже в других файлах где нам надо указываем MY_THEME | |
echo '<img src="'.MY_THEME.'/link-to-0image" />'; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment