WP HOOKS
filtrod 3.3.0

wp_unique_post_slug

Args 6Plik wp-includes/post.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the unique post slug.

Parametry

ParametrTypOpis
$slugstringThe post slug.
$post_idintPost ID.
$post_statusstringThe post status.
$post_typestringPost type.
$post_parentintPost parent ID
$original_slugstringThe original post slug.

Wywołanie

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

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

Popularne w tej kategorii