Created
September 6, 2018 11:29
-
-
Save amorkovin/3e1e47af2b6e2e34fa4e6ec840fe889f to your computer and use it in GitHub Desktop.
filter the_content пример фильтра для контента
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'the_content', 'filter_function_name_11' ); | |
function filter_function_name_11( $content ) { | |
// Фильтр... | |
return $content; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment