WP HOOKS
filtrod 4.4.0

get_sample_permalink

Args 5Plik wp-admin/includes/post.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the sample permalink.

Parametry

ParametrTypOpis
$permalinkarray{ Array containing the sample permalink with placeholder for the post name, and the post name. @type string $0 The permalink with placeholder for the post name. @type string $1 The post name. }
$post_idintPost ID.
$titlestringPost title.
$namestringPost name (slug).
$post\WP_PostPost object.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'get_sample_permalink', 'twoja_funkcja', 10, 5 );

function twoja_funkcja($param_1, $param_2, $param_3, $param_4, $param_5) {
	// Twój kod
}

Popularne w tej kategorii