Skip to content

Instantly share code, notes, and snippets.

@soderlind-gist
soderlind-gist / gist:4543611
Created January 16, 2013 00:43
piklist:colorpicker
piklist( 'field', array(
'type' => 'colorpicker'
, 'scope' => 'post_meta' // Not used for settings sections
, 'field' => 'field_name'
, 'label' => 'Example Field'
, 'description' => 'Click in box'
, 'attributes' => array(
'class' => 'text'
)
) );
@soderlind-gist
soderlind-gist / gist:4543608
Created January 16, 2013 00:42
piklist:checkbox
piklist( 'field', array(
'type' => 'checkbox'
, 'scope' => 'post_meta' // Not used for settings sections
, 'field' => 'field_name'
, 'value' => 'option2' // Sets default to Option 2
, 'label' => 'Example Field'
, 'description' => 'Field Description'
, 'attributes' => array(
'class' => 'text'
)
@soderlind-gist
soderlind-gist / remove_comments_are_closed.php
Created January 15, 2013 20:12
WordPress:Remove comments are closed
add_filter('gettext', 'ps_remove_comments_are_closed', 20, 3);
function ps_remove_comments_are_closed($translated_text, $untranslated_text, $domain) {
if ( $untranslated_text == 'Comments are closed.' ) {
return '';
}
return $translated_text;
}