<?php //functions.php
get_stylesheet_uri();
// zwraca adres pliku STYLE.CSS
get_template_directory_uri();
// zwraca adres motywu http://localhost/wordpress/LoveToEat/wp-content/themes/LoveToEat/
get_theme_root();
// zwraca SCIEZKE LOKALNA do katalogu E:\wamp64\www\wordpress\LoveToEat/wp-content/themes/
get_template();
// zwraca nazwe szablonu LoveToEat
WP_CONTENT_URL;
// stala zwraca scietke katalogu 'Wp-Content' http://localhost/wordpress/LoveToEat/wp-content
//Funkcja definiujaca stale:
define('LOVETOEAT_THEME_URL', WP_CONTENT_URL . '/themes/' . get_template() . '/');
// http://localhost/wordpress/LoveToEat/wp-content/themes/LoveToEat/
define('LOVETOEAT_THEME_DIR', get_theme_root() . '/' . get_template() . '/' );
// E:\wamp64\www\wordpress\LoveToEat/wp-content/themes/LoveToEat/
?>
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.