WP_Rewrite::using_index_permalinks

Advertisement

Summery Summery

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

Syntax Syntax

WP_Rewrite::using_index_permalinks()

Description Description

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

Return Return

(bool) Whether permalink links are enabled and index.php is in the URL.

Source Source

File: wp-includes/class-wp-rewrite.php

	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 );
	}

Advertisement

Changelog Changelog

Changelog
Version Description
1.5.0 Introduced.

Advertisement

Leave a Reply