I hereby claim:
- I am danielpost on github.
- I am danielpost (https://keybase.io/danielpost) on keybase.
- I have a public key ASCuupmXsGBf5Ty9o_cgesJEsf40Y_LcbynZIB_xnJicxgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /** | |
| * Adds a Base64 encoded version of the Featured Image thumbnail | |
| * to post meta | |
| * | |
| * @param int $post_id ID of the post that's being updated. | |
| */ | |
| function dp_add_base64_featured_image_thumb($post_id) { | |
| // If this is just a revision, don't do anything. | |
| if (wp_is_post_revision($post_id)) { |
| <?php | |
| $reusable_checkbox_field = array( | |
| 'type' => 'checkbox', | |
| 'choices' => array( | |
| 'red' => __('Red', THEME_SLUG), | |
| 'white' => __('White', THEME_SLUG), | |
| 'blue' => __('Blue', THEME_SLUG), | |
| ), | |
| ); |