Skip to content

Instantly share code, notes, and snippets.

//-------------------------------------------Adding JS for Slick Slide
function add_slickslide_js($dropdown_options) {
//If we want Thematic dropdown features, we spit back the original options
echo $dropdown_options;
//Then we break out of PHP and add more stuff to the header:
?>
//add the function below the header:
add_action( 'thematic_belowheader' , 'slickslide_loop');
?>
<?php
// info per featured item you can add more template tags:
// http://codex.wordpress.org/Template_Tags/
// add your own style it in the css file: ?>
<span>
<h2><?php the_title();?></h2>
<p><?php the_excerpt(); ?></p>
<span>
</div>
<?php // Construct your featured item: ?>
<div><?php // We are using the post thumbnail: ?>
<?php the_post_thumbnail();?>
<?php
// Create a query using the # items from the 'featured' category
$my_query = new WP_Query('category_name=featured&showposts=5');
while ($my_query->have_posts()) : $my_query->the_post();
?>
add_theme_support('post-thumbnails');function slickslide_loop(){ ?><?php // Start the slideshow divs: ?>
<div id="slideshow">
<div id="slidesContainer">
<?php
function add_slickslide_js($dropdown_options) {
//If we want Thematic dropdown features, we spit back the original options
echo $dropdown_options;
//Then we break out of PHP and add more stuff to the header:
?>
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/jquery.js"></script>
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/slickslide.js"></script>
<?php
}
//-------------------------------------------Adding JS for Slick Slide
function add_slickslide_js($dropdown_options) {
//If we want Thematic dropdown features, we spit back the original options
echo $dropdown_options;
//Then we break out of PHP and add more stuff to the header:
?>
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/jquery.js"></script>
<script type="text/javascript" src="<?php bloginfo('stylesheet_directory'); ?>/js/slickslide.js"></script>
#slideshow #slidesContainer {
margin:0 auto;
width:560px;
height:263px;
overflow:auto; /* allow scrollbar */
position:relative;
}
#slideshow #slidesContainer .slide {
margin:0 auto;
width:540px; /* reduce by 20 pixels to avoid horizontal scroll */
<?php
// Adds a home link to your menu
// http://codex.wordpress.org/Template_Tags/wp_page_menu
//function childtheme_menu_args($args) {
// $args = array(
// 'show_home' => 'Home',
// 'sort_column' => 'menu_order',
// 'menu_class' => 'menu',
// 'echo' => true