Add custom content to header right
<?php /** * Add custom content to header right */ add_filter('ts_header_right', 'custom_header_right'); function custom_header_right() { $custom_content = 'CUSTOM CODE'; return $custom_content; }