wpseo_dynamic_permalinks_enabled хук-фильтрYoast 1.0

Filters the value of the dynamic_permalinks option.

Использование

add_filter( 'wpseo_dynamic_permalinks_enabled', 'wp_kama_wpseo_dynamic_permalinks_enabled_filter' );

/**
 * Function for `wpseo_dynamic_permalinks_enabled` filter-hook.
 * 
 * @param bool $value The value of the `dynamic_permalinks` option.
 *
 * @return bool
 */
function wp_kama_wpseo_dynamic_permalinks_enabled_filter( $value ){

	// filter...
	return $value;
}
$value(true|false)
The value of the dynamic_permalinks option.

Где вызывается хук

Indexable_Helper::dynamic_permalinks_enabled()
wpseo_dynamic_permalinks_enabled
yoast/src/helpers/indexable-helper.php 214
return (bool) \apply_filters( 'wpseo_dynamic_permalinks_enabled', $this->options_helper->get( 'dynamic_permalinks', false ) );

Где используется хук в Yoast SEO

Использование не найдено.