Skip to content

Commit 6b57942

Browse files
committed
Twenty Seventeen: Document the the_content filter.
Adds documentation references to the filter's docblock in `wp-includes/post-template.php`. Follow-up to [38833]. Props pmbaldha, mukesh27, sabernhardt. Fixes #63637. git-svn-id: https://develop.svn.wordpress.org/trunk@60430 602fd350-edb4-49c9-b593-d223f7449a82
1 parent 8d3aaef commit 6b57942

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/wp-content/themes/twentyseventeen/template-parts/post/content-audio.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
</header><!-- .entry-header -->
4343

4444
<?php
45+
/** This filter is documented in wp-includes/post-template.php */
4546
$content = apply_filters( 'the_content', get_the_content() );
4647
$audio = false;
4748

src/wp-content/themes/twentyseventeen/template-parts/post/content-video.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
</header><!-- .entry-header -->
4343

4444
<?php
45+
/** This filter is documented in wp-includes/post-template.php */
4546
$content = apply_filters( 'the_content', get_the_content() );
4647
$video = false;
4748

0 commit comments

Comments
 (0)