WP_Rewrite::using_index_permalinks()publicWP 1.5.0

Determines whether permalinks are being used and rewrite module is not enabled.

Means that permalink links are enabled and index.php is in the URL.

Method of the class: WP_Rewrite{}

No Hooks.

Return

true|false. Whether permalink links are enabled and index.php is in the URL.

Usage

global $wp_rewrite;
$wp_rewrite->using_index_permalinks();

Changelog

Since 1.5.0 Introduced.

WP_Rewrite::using_index_permalinks() code WP 6.4.3

public function using_index_permalinks() {
	if ( empty( $this->permalink_structure ) ) {
		return false;
	}

	// If the index is not in the permalink, we're using mod_rewrite.
	return preg_match( '#^/*' . $this->index . '#', $this->permalink_structure );
}