15 lines
241 B
PHP
15 lines
241 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
ini_set('display_errors','on');
|
||
|
|
error_reporting(E_ALL);
|
||
|
|
|
||
|
|
require '/vhosts/beta/wp-load.php';
|
||
|
|
//require '/thosts/vij/wp/wp-load.php';
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
if (isset($_GET['month']) and $_GET['year']){
|
||
|
|
calend_block($_GET['month'], $_GET['year']);
|
||
|
|
}
|
||
|
|
|