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
| <?php | |
| /** | |
| * With this function you can add any content or php codes after posts meta in single post page. | |
| * | |
| * @var $post current post object | |
| */ | |
| function codevz_single_after_meta( $post ) { | |
| if ( $post->ID === 22 ) { |
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
| <?php | |
| /** | |
| * With this function you can add any content or php codes after next/prev section in single post page. | |
| * | |
| * @var $post current post object | |
| */ | |
| function my_prefix_after_next_prev( $post ) { | |
| if ( $post->ID === 46 ) { |
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
| <?php | |
| /** | |
| * With this function you can add any content or php codes before page title section in single post page. | |
| * | |
| * @var $post current post object | |
| */ | |
| function my_prefix_before_title( $post ) { | |
| if ( $post->ID === 46 ) { |
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
| <?php | |
| /** | |
| * With this function you can add any content or php codes after title and date section in single post page. | |
| * | |
| * @var $post current post object | |
| */ | |
| function my_prefix_after_title_date( $post ) { | |
| if ( $post->ID === 46 ) { |
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
| <?php | |
| /** | |
| * With this function you can add any content or php codes before comments section in single post page. | |
| * | |
| * @var $post current post object | |
| */ | |
| function my_prefix_before_comments( $post ) { | |
| if ( $post->ID === 46 ) { |
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
| <?php | |
| /** | |
| * With this function you can add any content or php codes after comments section in single post page. | |
| * | |
| * @var $post current post object | |
| */ | |
| function my_prefix_after_comments( $post ) { | |
| if ( $post->ID === 46 ) { |
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
| <?php | |
| /** | |
| * With this function you can add any content or php codes before page title. | |
| * | |
| * @var $post current post object | |
| */ | |
| function my_prefix_before_title( $post ) { | |
| if ( $post->ID === 46 ) { |