sahifa-box-em-all/index.php

24 lines
No EOL
696 B
PHP

<?php
/*
Plugin Name: Sahifa Box'em'all
Plugin URI:
Description: Permette di ottenere dei box in stile sahifa per le pagine usando uno shortcode, se usato con il plugin all-in-event-calender con il medesimo modo si possono anche ottenere dei box di eventi.
Version: 0.1
Author: gin(e)
Author URI: http://ginex.indivia.net
License: BSD(3-clause) Licence
*/
add_shortcode('sbea', 'sbea_inject_box');
function sbea_inject_box($attrs){
if( is_home() &&
isset($attrs['type']) && isset($attrs['ids'])){
if($attrs['type']=='page'){
require_once 'page_box.php';
get_page_box($attrs);
} else if ($attrs['type']=='event') {
require_once 'ai1ec_box.php';
get_ai1ec_box($attrs);
}
}
}