Skip to content

Instantly share code, notes, and snippets.

@amorkovin
Created September 6, 2018 11:29
Show Gist options
  • Save amorkovin/3e1e47af2b6e2e34fa4e6ec840fe889f to your computer and use it in GitHub Desktop.
Save amorkovin/3e1e47af2b6e2e34fa4e6ec840fe889f to your computer and use it in GitHub Desktop.
filter the_content пример фильтра для контента
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