WP HOOKS
filtrod 1.5.0

the_permalink

Args 2Plik wp-includes/link-template.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the display of the permalink for the current post.

Parametry

ParametrTypOpis
$permalinkstringThe permalink for the current post.
$postint | \WP_PostPost ID, WP_Post object, or 0. Default 0.

Wywołanie

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

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

Popularne w tej kategorii