Skip to content

Instantly share code, notes, and snippets.

@Codevz
Last active June 18, 2022 10:26
XTRA WP Theme - Action hook for adding content before fixed side, https://xtratheme.com/
<?php
/**
* With this function you can add any content or php codes before fixed side.
*/
function my_prefix_before_fixed_side_1() {
echo 'This is a custom content text.';
}
add_action( 'codevz/before_fixed_side_1', 'my_prefix_before_fixed_side_1' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment