first commit
This commit is contained in:
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
/**
|
||||
* Dynamic date shortcode
|
||||
*/
|
||||
|
||||
if ( ! class_exists( 'OceanWP_Date_Shortcode' ) ) {
|
||||
|
||||
class OceanWP_Date_Shortcode {
|
||||
|
||||
/**
|
||||
* Start things up
|
||||
*
|
||||
* @since 1.1.8
|
||||
*/
|
||||
public function __construct() {
|
||||
add_shortcode( 'oceanwp_date', array( $this, 'date_shortcode' ) );
|
||||
}
|
||||
|
||||
/**
|
||||
* Registers the function as a shortcode
|
||||
*
|
||||
* @since 1.1.8
|
||||
*/
|
||||
public function date_shortcode( $atts, $content = null ) {
|
||||
|
||||
// Extract attributes
|
||||
extract( shortcode_atts( array(
|
||||
'year' => '',
|
||||
), $atts ) );
|
||||
|
||||
// Var
|
||||
$date = '';
|
||||
|
||||
if ( '' != $year ) {
|
||||
$date .= $year . ' - ';
|
||||
}
|
||||
|
||||
$date .= date( 'Y' );
|
||||
|
||||
return esc_attr( $date );
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
new OceanWP_Date_Shortcode();
|
||||
Reference in New Issue
Block a user