<?php /** * With this function you can add any content or php codes before mobile header. */ function my_prefix_before_mobile_header() { echo 'This is a custom content text.'; } add_action( 'codevz/before_header_4', 'my_prefix_before_mobile_header' );