spivurno
12/4/2015 - 4:22 PM

Gravity Wiz // Gravity Forms // Dynamic Population: Is Post Author?

Gravity Wiz // Gravity Forms // Dynamic Population: Is Post Author?

/**
 * Gravity Wiz // Gravity Forms // Dynamic Population: Is Post Author?
 * http://gravitywiz.com/
 */
add_filter( 'gform_field_value_is_post_author', 'gw_dyn_pop_is_post_author' );
function gw_dyn_pop_is_post_author() {
	global $post;
	return $post ? get_current_user_id() == $post->post_author : false;
}