filter hook raindrops_skip_excerpt

サポートバージョン Raindrops 1.457以降

add_filter('raindrops_skip_excerpt','conditional_change_raindrops_skip_excerpt');

function conditional_change_raindrops_skip_excerpt($bool) {
	global $post;

	$format= get_post_format( $post->ID );
	if( 'chat'== $format ) {
		
		return true;
	}
	return $bool;
}

functions.php


コメントは受け付けていません。