JoeHana
5/30/2013 - 10:18 PM

Change wording of project details

Change wording of project details

<?php

/**
 * Change wording of project details
 */
 
add_filter('frameshift_project_details_client', 'custom_project_details_client');

function custom_project_details_client($output) {
    // Custom Code
	$output = __( 'Project Partner', 'frameshift' ) . ':' ;
	return $output;
}