2014-11-30, 01:03:22
Special for you, i installed Iridium and insert datepicker. Use my complete code.
All Head.inc.php
For example template.php
It's work!
All Head.inc.php
Code:
<?php if(!defined('IN_GS')){ die('you cannot load this page directly.'); }
/****************************************************
*
* @File: head.inc.php
* @Package: GetSimple
* @Action: Iridium theme for GetSimple CMS
*
*****************************************************/
?>
<!-- Site Title -->
<title><?php get_page_clean_title(); ?> — <?php get_site_name(); ?></title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<!--[if lte IE 8]><script src="<?php get_theme_url(); ?>js/html5shiv.js"></script><![endif]-->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="<?php get_theme_url(); ?>/js/skel.min.js"></script>
<script src="<?php get_theme_url(); ?>/js/skel-panels.min.js"></script>
<script> var prefixUrl = '<?php get_theme_url(); ?>'; </script>
<script src="<?php get_theme_url(); ?>/js/init.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<noscript>
<link rel="stylesheet" href="<?php get_theme_url(); ?>/css/skel-noscript.css" />
<link rel="stylesheet" href="<?php get_theme_url(); ?>/css/style.css" />
<link rel="stylesheet" href="<?php get_theme_url(); ?>/css/style-desktop.css" />
</noscript>
<!--[if lte IE 8]><link rel="stylesheet" href="<?php get_theme_url(); ?>css/ie/v8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="<?php get_theme_url(); ?>css/ie/v9.css" /><![endif]-->
<link href='http://fonts.googleapis.com/css?family=Arimo:400,700' rel='stylesheet' type='text/css'>
<script>
$(document).ready(function() {
$("#datepicker").datepicker();
});
</script>
<?php get_header(); ?>
For example template.php
Code:
<p>Date: <input type="text" id="datepicker"></p>
It's work!