Tribe__Process__Queue::get_meta_key( string $key )

Returns the name of the transient that will store the queue meta information for the specific key.


Parameters

$key

(string) (Required)


Top ↑

Return

(string)


Top ↑

Source

File: src/Tribe/Process/Queue.php

	public function get_meta_key( $key ) {
		$key = preg_replace( '/^(.*)_\\d+$/', '$1', $key );

		return $key . '_meta';
	}

Top ↑

Changelog

Changelog
Version Description
4.7.12 Introduced.