Drupal en herhangi WordPress eşdeğer bir işlevi var mı url()
a>?
Drupal en herhangi WordPress eşdeğer bir işlevi var mı url()
a>?
Drupal fonksiyonu için belgelerine göre Sana, bulmak demektir yakın şey site_url () olduğunu düşünüyorum.
/**
* Retrieve the site url for the current site.
*
* Returns the 'site_url' option with the appropriate protocol, 'https' if
* is_ssl() and 'http' otherwise. If $scheme is 'http' or 'https', is_ssl() is
* overridden.
*
* @package WordPress
* @since 2.6.0
*
* @uses get_site_url()
*
* @param string $path Optional. Path relative to the site url.
* @param string $scheme Optional. Scheme to give the site url context. Currently 'http','https', 'login', 'login_post', or 'admin'.
* @return string Site url link with optional path appended.
*/
site_url(string path, string scheme);
Bildiğim kadarıyla, Drupal url_alias
güzel olanlar için düzenli URL'ler haritasına adında bir db tablo kullanır, ama WordPress sadece .htaccess
dosyası kullanın. Yani, WordPress için url()
eşdeğer olacaktır.
Eğer bir wordpress sayfa url almak için get_page_uri()
a> fonksiyonu yararlanabilirler arada.