25 lines
622 B
PHP
25 lines
622 B
PHP
|
<?php
|
||
|
/*
|
||
|
Plugin Name: Sahifa Box'em'all
|
||
|
Plugin URI:
|
||
|
Description: permette tramite shortcode di ottenere dei box in stile sahifa, se usato con il plugin all-in-event-calender, anche dei box di eventi.
|
||
|
Version: 0.1
|
||
|
Author: gin(e)
|
||
|
Author URI: http://ginex.indivia.net
|
||
|
License: BSD(3-clause) Licence
|
||
|
*/
|
||
|
|
||
|
require_once 'home-cats.php';
|
||
|
|
||
|
add_shortcode('sbea', 'sbea_inject_box');
|
||
|
//add_filter('','sbea_inject_content');
|
||
|
function sbea_inject_box($attrs){
|
||
|
if( is_home() &&
|
||
|
isset($attrs['type']) && isset($attrs['ids'])){
|
||
|
if($attrs['type']=='page'){
|
||
|
get_page_box($attrs);
|
||
|
} else if ($attrs['type']=='event') {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|