-
Notifications
You must be signed in to change notification settings - Fork 7
Internal Shortcode | [Post_Modified_GMT]
EkoJr edited this page Jan 3, 2017
·
2 revisions
Adds the post/page modified date & time as GMT timezone.
[post_modified_gmt format="m-d-Y"]
(string) (optional) Format used via PHP.
(string) WP_Post Post_Modified_GMT.
[post_modified_gmt format="m-d-Y"]
Returns
9-27-2016
File: advanced-post-list/includes/class/apl_shortcodes.php
/**
* Post Date Modified GMT Shortcode.
*
* Desc: Adds the post/page modified date GMT.
*
* 1. Get & Add to return Post's Formatted Modified Date GMT.
* 2. Return string.
*
* @since 0.1.0
* @version 0.4.0 - Changed to Class function, and uses WP's built-in
* functions for setting default attributes & do_shortcode().
*
* @link http://php.net/manual/en/function.date.php
*
* @param array $atts {
*
* Shortcode Attributes.
*
* @type string $format Used to format date via PHP function.
*
* }
* @return string Post Modified GMT.
*/
public function post_modified_gmt($atts)
{
//INIT
$atts_value = shortcode_atts( array(
'format' => 'm-d-Y'
), $atts, 'post_date');
$return_str = '';
//STEP 1
$return_str .= mysql2date($atts_value['format'], $this->_post->post_modified_gmt);
//STEP 2
return $return_str;
}
PHP Date/Time Function - Describes the format used in APL.
- [post_date] - WP_Post Date/Time.
- [post_date_gmt] - WP_Post Date/Time GMT.
- [post_modified] - WP_Post Modified Date/Time.