WP_Rewrite::using_mod_rewrite_permalinks
Determines whether permalinks are being used and rewrite module is enabled.
Using permalinks and index.php is not in the URL.
Метод класса: WP_Rewrite{}
Хуков нет.
Возвращает
true|false. Whether permalink links are enabled and index.php is NOT in the URL.
Использование
global $wp_rewrite; $wp_rewrite->using_mod_rewrite_permalinks();
Список изменений
| С версии 1.5.0 | Введена. |
Код WP_Rewrite::using_mod_rewrite_permalinks() WP Rewrite::using mod rewrite permalinks WP 7.0.3
public function using_mod_rewrite_permalinks() {
return $this->using_permalinks() && ! $this->using_index_permalinks();
}