Definition:
function flush_rewrite_rules( $hard = true ) {}
Parameters
- bool $hard: Whether to update .htaccess (hard flush) or just update rewrite_rules transient (soft flush). Default is true (hard).
Source code
function flush_rewrite_rules( $hard = true ) {
global $wp_rewrite;
$wp_rewrite->flush_rules( $hard );
}
1080

February 11, 2011 


floated_admin_avatar
Definition:
function floated_admin_avatar( $name ) {}
Parameters
Return values
returns:Avatar with Admin name.
Source code
function floated_admin_avatar( $name ) { global $comment; $avatar = get_avatar( $comment, 32 ); return "$avatar $name"; }1078