JoeHana
4/2/2013 - 4:42 PM

Add custom content to header right

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;

}