Esempio n. 1
0
	public function startBibliography( array $args ) {
		++$this->bibliographyLevel;
		# If a bibliography already exists, or is nested, ignore it, but keep track of nesting level.
		if ( isset( $this->bibliography ) || $this->bibliographyLevel > 1 ) {
			return;
		}
		$this->bibliography = WCBibliography::getBibliography( $args, $this->currentDefaultStyle );
	}