You appear to be a bot. Output may be restricted
Description
Return the default separator between the field label and field value
Usage
$string = bw_default_sep();
Parameters
Returns
string separator – with spaces if required
Source
File name: oik/libs/bw_fields.php
Lines:
1 to 7 of 7
function bw_default_sep() { $sep = bw_get_option( "bw_separator", "bw_fields" ); if ( !$sep ) { $sep = __( ": ", null ); } return( $sep); }