Example code
Step 1
XTRA
Using WordPress action add content or PHP codes
In the following example you can see how to add content or PHP codes before any posts meta in single post page.
This file contains 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 posts meta in single post page. | |
* | |
* @var $post current post object | |
*/ | |
function codevz_single_before_meta( $post ) { | |
if ( $post->ID === 22 ) { | |
echo 'This content will show up before post meta where post ID is 22'; | |
} | |
} | |
add_action( 'codevz/single/before_meta', 'codevz_single_before_meta' ); |
XTRA
How and where should I add this PHP codes?
Best solution is to add custom actions and filters in Child Theme functions.php file. But also you can create your own plugin and use this codes in your plugin.
No comment