<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ThemeShaper Forums Topic: Add a slideshow to a header</title>
<link>http://themeshaper.com/forums/</link>
<description>Help In Shaping WordPress Themes</description>
<language>en</language>
<pubDate>Tue, 21 May 2013 19:56:18 +0000</pubDate>

<item>
<title>ScottNix on "Add a slideshow to a header"</title>
<link>http://themeshaper.com/forums/topic/add-a-slideshow-to-a-header#post-27500</link>
<pubDate>Fri, 13 Jul 2012 15:32:22 +0000</pubDate>
<dc:creator>ScottNix</dc:creator>
<guid isPermaLink="false">27500@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;The forum has moved to &#60;a href=&#34;http://thematictheme.com/forums&#34; rel=&#34;nofollow&#34;&#62;http://thematictheme.com/forums&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Although you are probably looking for something like this.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;function childtheme_add_slider_shortcode() {
    echo do_shortcode(&#38;quot;[satellite custom=1]&#38;quot;);
}
add_action(&#38;#39;thematic_header&#38;#39;, &#38;#39;childtheme_add_slider_shortcode&#38;#39;, 6);&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You will also see a &#34;6&#34; above which is the priority, the &#34;odds - 1,3,5,7 and 9&#34; are already taken, so you will have to move it around to where you want using even numbers. &#60;/p&#62;
&#60;p&#62;References&#60;br /&#62;
&#60;a href=&#34;http://themeshaper.com/thematic/guide/?page_id=10&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/thematic/guide/?page_id=10&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://css-tricks.com/snippets/wordpress/shortcode-in-a-template/&#34; rel=&#34;nofollow&#34;&#62;http://css-tricks.com/snippets/wordpress/shortcode-in-a-template/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>Colleen on "Add a slideshow to a header"</title>
<link>http://themeshaper.com/forums/topic/add-a-slideshow-to-a-header#post-27480</link>
<pubDate>Wed, 11 Jul 2012 08:32:31 +0000</pubDate>
<dc:creator>Colleen</dc:creator>
<guid isPermaLink="false">27480@http://themeshaper.com/forums/</guid>
<description>&#60;p&#62;Hi&#60;br /&#62;
I have installed Satellite Slideshow on my wordpress website and would like to know how I put it into the header please? The code for the slide show is [satellite custom=1]. I have a thematic child theme set up on my site.&#60;/p&#62;
&#60;p&#62;This is what I already have in my functions php page.&#60;/p&#62;
&#60;p&#62;&#38;lt;?php&#60;/p&#62;
&#60;p&#62;//&#60;br /&#62;
//  Custom Child Theme Functions&#60;br /&#62;
//&#60;/p&#62;
&#60;p&#62;// I've included a &#34;commented out&#34; sample function below that'll add a home link to your menu&#60;br /&#62;
// More ideas can be found on &#34;A Guide To Customizing The Thematic Theme Framework&#34;&#60;br /&#62;
// &#60;a href=&#34;http://themeshaper.com/thematic-for-wordpress/guide-customizing-thematic-theme-framework/&#34; rel=&#34;nofollow&#34;&#62;http://themeshaper.com/thematic-for-wordpress/guide-customizing-thematic-theme-framework/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;// Adds a home link to your menu&#60;br /&#62;
// &#60;a href=&#34;http://codex.wordpress.org/Template_Tags/wp_page_menu&#34; rel=&#34;nofollow&#34;&#62;http://codex.wordpress.org/Template_Tags/wp_page_menu&#60;/a&#62;&#60;br /&#62;
//function childtheme_menu_args($args) {&#60;br /&#62;
//    $args = array(&#60;br /&#62;
//        'show_home' =&#38;gt; 'Home',&#60;br /&#62;
//        'sort_column' =&#38;gt; 'menu_order',&#60;br /&#62;
//        'menu_class' =&#38;gt; 'menu',&#60;br /&#62;
//        'echo' =&#38;gt; true&#60;br /&#62;
//    );&#60;br /&#62;
//	return $args;&#60;br /&#62;
//}&#60;br /&#62;
//add_filter('wp_page_menu_args','childtheme_menu_args');&#60;/p&#62;
&#60;p&#62;// Unleash the power of Thematic's dynamic classes&#60;br /&#62;
//&#60;br /&#62;
// define('THEMATIC_COMPATIBLE_BODY_CLASS', true);&#60;br /&#62;
// define('THEMATIC_COMPATIBLE_POST_CLASS', true);&#60;/p&#62;
&#60;p&#62;// Unleash the power of Thematic's comment form&#60;br /&#62;
//&#60;br /&#62;
// define('THEMATIC_COMPATIBLE_COMMENT_FORM', true);&#60;/p&#62;
&#60;p&#62;// Unleash the power of Thematic's feed link functions&#60;br /&#62;
//&#60;br /&#62;
// define('THEMATIC_COMPATIBLE_FEEDLINKS', true);&#60;br /&#62;
function remove_title($posttitle) {&#60;br /&#62;
    if (is_page() &#124;&#124; is_404()) {&#60;br /&#62;
        return '';&#60;br /&#62;
    } else {&#60;br /&#62;
    	return $posttitle;&#60;br /&#62;
    }&#60;br /&#62;
}&#60;br /&#62;
add_filter('thematic_postheader_posttitle', 'remove_title');&#60;br /&#62;
function childtheme_favicon() { ?&#38;gt;&#60;br /&#62;
&#38;lt;link rel=&#34;shortcut icon&#34; href=&#34;&#38;lt;?php echo bloginfo('stylesheet_directory') ?&#38;gt;/favicon.ico&#34;&#38;gt;&#60;br /&#62;
&#38;lt;?php }&#60;/p&#62;
&#60;p&#62;// favicon front-end&#60;br /&#62;
add_action('wp_head', 'childtheme_favicon');&#60;/p&#62;
&#60;p&#62;// favicon back-end&#60;br /&#62;
add_action('admin_head', 'childtheme_favicon');&#60;/p&#62;
&#60;p&#62;// favicon login-page&#60;br /&#62;
add_action('login_head', 'childtheme_favicon');&#60;/p&#62;
&#60;p&#62;?&#38;gt;&#60;/p&#62;
&#60;p&#62;regards Colleen
&#60;/p&#62;</description>
</item>

</channel>
</rss>
