Skip to content

Instantly share code, notes, and snippets.

View Codevz's full-sized avatar
🎯
Focusing

Codevz Codevz

🎯
Focusing
View GitHub Profile
@Codevz
Codevz / codevz-after_header_3.php
Last active June 18, 2022 10:24
XTRA WP Theme - Action hook for adding content after header bottom bar, https://xtratheme.com/
<?php
/**
* With this function you can add any content or php codes after header bottom bar.
*/
function my_prefix_after_header_bottom_bar() {
echo 'This is a custom content text.';
}
@Codevz
Codevz / codevz-before_header_3.php
Last active June 18, 2022 10:25
XTRA WP Theme - Action hook for adding content before header bottom bar, https://xtratheme.com/
<?php
/**
* With this function you can add any content or php codes before header bottom bar.
*/
function my_prefix_before_header_bottom_bar() {
echo 'This is a custom content text.';
}
@Codevz
Codevz / codevz-after_header_2.php
Last active June 18, 2022 10:25
XTRA WP Theme - Action hook for adding content after main header, https://xtratheme.com/
<?php
/**
* With this function you can add any content or php codes after main header.
*/
function my_prefix_after_main_header() {
echo 'This is a custom content text.';
}
@Codevz
Codevz / codevz-before_header_2.php
Last active June 18, 2022 10:25
XTRA WP Theme - Action hook for adding content before main header, https://xtratheme.com/
<?php
/**
* With this function you can add any content or php codes before main header.
*/
function my_prefix_before_main_header() {
echo 'This is a custom content text.';
}
@Codevz
Codevz / codevz-after_header_1.php
Last active June 18, 2022 10:25
XTRA WP Theme - Action hook for adding content after header top bar, https://xtratheme.com/
<?php
/**
* With this function you can add any content or php codes after header top bar.
*/
function my_prefix_after_header_top_bar() {
echo 'This is a custom content text.';
}
@Codevz
Codevz / codevz-before_header_1.php
Last active June 18, 2022 10:26
XTRA WP Theme - Action hook for adding content before header top bar, https://xtratheme.com/
<?php
/**
* With this function you can add any content or php codes before header top bar.
*/
function my_prefix_before_header_top_bar() {
echo 'This is a custom content text.';
}
@Codevz
Codevz / codevz-after_fixed_side_1.php
Last active June 18, 2022 10:26
XTRA WP Theme - Action hook for adding content after fixed side, https://xtratheme.com/
<?php
/**
* With this function you can add any content or php codes after fixed side.
*/
function my_prefix_after_fixed_side_1() {
echo 'This is a custom content text.';
}
@Codevz
Codevz / codevz-before_fixed_side_1.php
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.';
}
@Codevz
Codevz / codevz-after_slider.php
Last active June 18, 2022 10:26
XTRA WP Theme - Action hook for adding content after page slider, https://xtratheme.com/
<?php
/**
* With this function you can add any content or php codes after page slider.
*/
function my_prefix_after_slider() {
echo 'This is a custom content text.';
}
@Codevz
Codevz / codevz-before_slider.php
Last active June 18, 2022 10:26
XTRA WP Theme - Action hook for adding content before page slider, https://xtratheme.com/
<?php
/**
* With this function you can add any content or php codes before page slider.
*/
function my_prefix_before_slider() {
echo 'This is a custom content text.';
}