| 1 |
<?php |
| 2 |
/** |
| 3 |
* Helpers Post Format UI |
| 4 |
* |
| 5 |
* @package Powerkit |
| 6 |
* @subpackage Modules/Helper |
| 7 |
*/ |
| 8 |
|
| 9 |
/** |
| 10 |
* Get post format audio. |
| 11 |
*/ |
| 12 |
function powerkit_post_format_audio() { |
| 13 |
return get_post_meta( get_the_ID(), 'powerkit_post_format_audio', true ); |
| 14 |
} |
| 15 |
|
| 16 |
/** |
| 17 |
* Get post format video. |
| 18 |
*/ |
| 19 |
function powerkit_post_format_video() { |
| 20 |
return get_post_meta( get_the_ID(), 'powerkit_post_format_video', true ); |
| 21 |
} |
| 22 |
|
| 23 |
/** |
| 24 |
* Get post format gallery. |
| 25 |
*/ |
| 26 |
function powerkit_post_format_gallery() { |
| 27 |
return get_post_meta( get_the_ID(), 'powerkit_post_format_gallery', true ); |
| 28 |
} |
| 29 |
|