<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>THE MOLITOR FORUMS &#187; Topic: Remove Sticky Posts at Bottom of Page</title>
		<link>http://www.themolitor.com/forums/topic/remove-sticky-posts-at-bottom-of-page</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Remove Sticky Posts at Bottom of Page</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 06:46:35 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/remove-sticky-posts-at-bottom-of-page" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "Remove Sticky Posts at Bottom of Page"</title>
			<link>http://www.themolitor.com/forums/topic/remove-sticky-posts-at-bottom-of-page#post-39754</link>
			<pubDate>Mon, 18 Jul 2016 07:29:18 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">39754@http://www.themolitor.com/forums/</guid>
			<description><p>You bet!
</p></description>
		</item>
		<item>
			<title>ASadmin on "Remove Sticky Posts at Bottom of Page"</title>
			<link>http://www.themolitor.com/forums/topic/remove-sticky-posts-at-bottom-of-page#post-39739</link>
			<pubDate>Fri, 15 Jul 2016 17:28:51 +0000</pubDate>
			<dc:creator>ASadmin</dc:creator>
			<guid isPermaLink="false">39739@http://www.themolitor.com/forums/</guid>
			<description><p>Outstanding. Perfect. Thank you.  --cjp
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Remove Sticky Posts at Bottom of Page"</title>
			<link>http://www.themolitor.com/forums/topic/remove-sticky-posts-at-bottom-of-page#post-39732</link>
			<pubDate>Fri, 15 Jul 2016 12:24:47 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">39732@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Here's a pure CSS fix you can add to the Customize page without having to remove code from template files...</p>
<pre><code>#stickyPosts {
    display: none !important;
}

body.with-sticky-post #contentContainer {
    margin-bottom: 0 !important;
}</code></pre>
<p>Let me know if that helps.</p>
<p>Best,</p>
<p>Christopher
</p></description>
		</item>
		<item>
			<title>ASadmin on "Remove Sticky Posts at Bottom of Page"</title>
			<link>http://www.themolitor.com/forums/topic/remove-sticky-posts-at-bottom-of-page#post-39717</link>
			<pubDate>Fri, 15 Jul 2016 08:06:06 +0000</pubDate>
			<dc:creator>ASadmin</dc:creator>
			<guid isPermaLink="false">39717@http://www.themolitor.com/forums/</guid>
			<description><p>Hi, Christopher:</p>
<p>Actually, I do need your help :-)</p>
<p>I deleted this from the sticky-posts.php:</p>
<pre><code>

//////////////
//STICKY POSTS
//////////////
else {

	//THE QUERY
	$query1 = new WP_Query(array(
		'posts_per_page' =&#62; 2,
		'post__in'  =&#62; get_option( 'sticky_posts' ),
		'ignore_sticky_posts' =&#62; 1,
		'orderby' =&#62; 'rand',
		'tax_query' =&#62; array(
			array(
			'taxonomy' =&#62; 'post_format',
			'field'    =&#62; 'slug',
			'terms'    =&#62; array( 'post-format-aside', 'post-format-quote' ),
			'operator' =&#62; 'NOT IN',
			)
	 	)
	));

	//IF STUFF EXISTS...
	if( $query1-&#62;have_posts() ){

		echo '&#60;div id="stickyPosts"&#62;';

		while ( $query1-&#62;have_posts() ) {
			$query1-&#62;the_post();
			$post_id = $query1-&#62;post-&#62;ID;
			$postCategory = get_the_category($post_id);
			$postLink = get_permalink( $post_id );
			$postThumb = wp_get_attachment_image_src( get_post_thumbnail_id($post_id), 'larg' );
			$postThumburl = $postThumb['0'];
			?&#62;
			<a>" class="nextPrevItem" style="background-image:url('&#60;?php echo $postThumburl;?&#62;');"&#62;
				&#60;div&#62;&#60;p&#62;&#60;span&#62;&#60;?php if( is_sticky() ) { _e('Featured','themolitor'); } else { echo _e('Latest','themolitor'); } echo ' '.$postCategory[0]-&#62;cat_name.' '; _e('Item','themolitor');?&#62;&#60;/span&#62;&#60;?php echo get_the_title($post_id); ?&#62;&#60;/p&#62;&#60;/div&#62;
			</a>&#60;!--end rightNextItem--&#62;
		&#60;?php } //END WHILE

		echo '&#60;div class="clear"&#62;&#60;/div&#62;&#60;/div&#62;&#60;!--end stickyPosts--&#62;';

	}//END IF

	wp_reset_postdata();

}//END STICKY POSTS

</code></pre>
<p>This removed them from the pages and categories but not from the post pages. Is there a way to do that?</p>
<p>Site is here:</p>
<p><a href="http://www.americasucceeds.org/start/" rel="nofollow">http://www.americasucceeds.org/start/</a></p>
<p>Sticky posts still appear on the bottom of these pages:</p>
<p><a href="http://www.americasucceeds.org/start/priorities/" rel="nofollow">http://www.americasucceeds.org/start/priorities/</a><br />
<a href="http://www.americasucceeds.org/start/lines/" rel="nofollow">http://www.americasucceeds.org/start/lines/</a><br />
<a href="http://www.americasucceeds.org/start/power-of-a-network/" rel="nofollow">http://www.americasucceeds.org/start/power-of-a-network/</a></p>
<p>Thanks--</p>
<p>--Christopher
</p></description>
		</item>
		<item>
			<title>ASadmin on "Remove Sticky Posts at Bottom of Page"</title>
			<link>http://www.themolitor.com/forums/topic/remove-sticky-posts-at-bottom-of-page#post-39709</link>
			<pubDate>Thu, 14 Jul 2016 12:46:26 +0000</pubDate>
			<dc:creator>ASadmin</dc:creator>
			<guid isPermaLink="false">39709@http://www.themolitor.com/forums/</guid>
			<description><p>Christopher:</p>
<p>Disregard.</p>
<p>Did not empty my browser cache before reviewing. D'huh. :-(
</p></description>
		</item>
		<item>
			<title>ASadmin on "Remove Sticky Posts at Bottom of Page"</title>
			<link>http://www.themolitor.com/forums/topic/remove-sticky-posts-at-bottom-of-page#post-39705</link>
			<pubDate>Thu, 14 Jul 2016 12:30:35 +0000</pubDate>
			<dc:creator>ASadmin</dc:creator>
			<guid isPermaLink="false">39705@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Christopher:</p>
<p>I read your FAQ:</p>
<p><a href="http://www.themolitor.com/forums/topic/disable-sticky-posts-at-bottom" rel="nofollow">http://www.themolitor.com/forums/topic/disable-sticky-posts-at-bottom</a></p>
<p>This works great for the home page. Wondering how I can disable these site-wide?</p>
<p>I think they're great. My client has asked me to disable them. :(</p>
<p>Thanks,</p>
<p>Christopher
</p></description>
		</item>

	</channel>
</rss>
