<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Limit-Post Add-On</title>
	<atom:link href="http://www.doc4design.com/plugins/limit-post/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.doc4design.com/plugins/limit-post/</link>
	<description>Advertising and Marketing agency located in Northwest Arkansas providing easily attainable, creative solutions for any outlet in any stage of growth.</description>
	<lastBuildDate>Wed, 01 Feb 2012 20:25:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: How To limit the displayed text length on your Homepage - WordPress Plugin &#124; MindPrompter.com</title>
		<link>http://www.doc4design.com/plugins/limit-post/comment-page-2/#comment-1415</link>
		<dc:creator>How To limit the displayed text length on your Homepage - WordPress Plugin &#124; MindPrompter.com</dc:creator>
		<pubDate>Thu, 12 Jan 2012 00:34:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/wp/?p=37#comment-1415</guid>
		<description>[...] Installation all you have to do is download the plugin name &#8220;Limit Posts&#8221; by typing it to your WordPress plugin search bar or go directly to its main or Developer site http://www.doc4design.com/plugins/limit-post/ [...]</description>
		<content:encoded><![CDATA[<p>[...] Installation all you have to do is download the plugin name “Limit Posts” by typing it to your WordPress plugin search bar or go directly to its main or Developer site <a href="http://www.doc4design.com/plugins/limit-post/" rel="nofollow">http://www.doc4design.com/plugins/limit-post/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dale Crum</title>
		<link>http://www.doc4design.com/plugins/limit-post/comment-page-2/#comment-1391</link>
		<dc:creator>Dale Crum</dc:creator>
		<pubDate>Mon, 12 Dec 2011 15:42:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/wp/?p=37#comment-1391</guid>
		<description>Rob, 

This plugin was not written by us, we simply included a few additional lines of code. Rather than steal the credit from the proper source it is expected that a user would visit labitacora.net for the full documentation on using the &quot;Limit Post&quot; plugin.</description>
		<content:encoded><![CDATA[<p>Rob, </p>
<p>This plugin was not written by us, we simply included a few additional lines of code. Rather than steal the credit from the proper source it is expected that a user would visit labitacora.net for the full documentation on using the “Limit Post” plugin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://www.doc4design.com/plugins/limit-post/comment-page-2/#comment-1390</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Sun, 11 Dec 2011 22:04:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/wp/?p=37#comment-1390</guid>
		<description>Man, you def need better documentation...</description>
		<content:encoded><![CDATA[<p>Man, you def need better documentation…</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doc4</title>
		<link>http://www.doc4design.com/plugins/limit-post/comment-page-2/#comment-1173</link>
		<dc:creator>Doc4</dc:creator>
		<pubDate>Thu, 12 May 2011 15:27:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/wp/?p=37#comment-1173</guid>
		<description>Dawn,

What you&#039;re looking for is a WordPress loop calling a page. The code below is working under the assumption there is or will be additional loops on the same page:

&lt;code&gt;&lt;div id=&quot;accordion-1&quot;&gt;
 &lt;dl&gt;
  &lt;dt&gt;First slide&lt;/dt&gt;
   &lt;dd&gt;&lt;h2&gt;This is the first slide&lt;/h2&gt;
    &lt;img src=&quot;images/monsters/img1.png&quot;/&gt;
    &lt;?php $my_query = new WP_Query(&#039;page_id=81&#039;);
               while ($my_query-&gt;have_posts()) : $my_query-&gt;the_post();
               $do_not_duplicate = $post-&gt;ID; ?&gt;

              &lt;?php get_the_content_limit(700, &#039;&#039;); ?&gt;
              &lt;?php endwhile; ?&gt;
  &lt;/dd&gt;
 &lt;/dl&gt;
&lt;/div&gt;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Dawn,</p>
<p>What you’re looking for is a WordPress loop calling a page. The code below is working under the assumption there is or will be additional loops on the same page:</p>
<p><pre><code>&lt;div id=&quot;accordion-1&quot;&gt;
 &lt;dl&gt;
&nbsp;&nbsp;&lt;dt&gt;First slide&lt;/dt&gt;
&nbsp;&nbsp; &lt;dd&gt;&lt;h2&gt;This is the first slide&lt;/h2&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;img src=&quot;images/monsters/img1.png&quot;/&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;?php $my_query = new WP_Query(&#039;page_id=81&#039;);
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; while ($my_query-&gt;have_posts()) : $my_query-&gt;the_post();
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $do_not_duplicate = $post-&gt;ID; ?&gt;

&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;?php get_the_content_limit(700, &#039;&#039;); ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;?php endwhile; ?&gt;
&nbsp;&nbsp;&lt;/dd&gt;
 &lt;/dl&gt;
&lt;/div&gt;</code></pre></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dawn</title>
		<link>http://www.doc4design.com/plugins/limit-post/comment-page-2/#comment-1172</link>
		<dc:creator>Dawn</dc:creator>
		<pubDate>Thu, 12 May 2011 08:26:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/wp/?p=37#comment-1172</guid>
		<description>Thanks for the speedy reply! I&#039;m using the jQuery Easy Accordian (same one here: http://www.madeincima.eu/samples/jquery/easyAccordion/).  It&#039;s basically just content within  tags in the slider panels, and I&#039;m able to display the full content of a page via the normal Wordpress syntax, but am not sure how to get it done with Limit-Post..</description>
		<content:encoded><![CDATA[<p>Thanks for the speedy reply! I’m using the jQuery Easy Accordian (same one here: <a href="http://www.madeincima.eu/samples/jquery/easyAccordion/" rel="nofollow">http://www.madeincima.eu/samples/jquery/easyAccordion/</a>).  It’s basically just content within  tags in the slider panels, and I’m able to display the full content of a page via the normal WordPress syntax, but am not sure how to get it done with Limit-Post..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doc4</title>
		<link>http://www.doc4design.com/plugins/limit-post/comment-page-2/#comment-1171</link>
		<dc:creator>Doc4</dc:creator>
		<pubDate>Wed, 11 May 2011 15:31:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/wp/?p=37#comment-1171</guid>
		<description>Dawn, 

What slider are you using?</description>
		<content:encoded><![CDATA[<p>Dawn, </p>
<p>What slider are you using?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dawn</title>
		<link>http://www.doc4design.com/plugins/limit-post/comment-page-2/#comment-1170</link>
		<dc:creator>Dawn</dc:creator>
		<pubDate>Wed, 11 May 2011 11:11:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/wp/?p=37#comment-1170</guid>
		<description>Hi! This is a really useful plug-in, and I’ve successfully implemented it for displaying my recent posts summary on my website’s home page. I’m kinda lost now though – I want to display limited content from a page into a slider I have on my homepage. Is this possible? I’m a noob at WP so do pardon me if the solution is really straightforward!

What I have now in my slider div:
&lt;code&gt;&lt;?php $page_id = 81; $page_data = get_page( $page_id ); $content = apply_filters(&#039;get_the_content_limit&#039;,$page_data-&gt;post_content); echo $content; ?&gt;&lt;/code&gt;

And.. it displays nothing. :( Appreciate any help if you could! TIA!</description>
		<content:encoded><![CDATA[<p>Hi! This is a really useful plug-in, and I’ve successfully implemented it for displaying my recent posts summary on my website’s home page. I’m kinda lost now though – I want to display limited content from a page into a slider I have on my homepage. Is this possible? I’m a noob at WP so do pardon me if the solution is really straightforward!</p>
<p>What I have now in my slider div:<br />
<code>&lt;?php $page_id = 81; $page_data = get_page( $page_id ); $content = apply_filters(&#039;get_the_content_limit&#039;,$page_data-&gt;post_content); echo $content; ?&gt;</code></p>
<p>And.. it displays nothing. <img src='http://www.doc4design.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Appreciate any help if you could! TIA!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doc4</title>
		<link>http://www.doc4design.com/plugins/limit-post/comment-page-2/#comment-1037</link>
		<dc:creator>Doc4</dc:creator>
		<pubDate>Mon, 20 Dec 2010 05:33:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/wp/?p=37#comment-1037</guid>
		<description>Maurintius, 

Every WordPress site is created differently, some have the loop built into pages and as you can see Twenty Ten has it&#039;s own loop file. Basically, do a search for &quot;the_content&quot; and replace it with the new code. For example in the case of Twenty Ten: loop.php: Line 122:
&lt;code&gt;
&lt;?php /* How to display all other posts. */ ?&gt;
 &lt;?php else : ?&gt;
  &lt;div id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;
   &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( &#039;Permalink to %s&#039;, &#039;twentyten&#039; ), the_title_attribute( &#039;echo=0&#039; ) ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
   &lt;div class=&quot;entry-meta&quot;&gt;
    &lt;?php twentyten_posted_on(); ?&gt;
   &lt;/div&gt;&lt;!-- .entry-meta --&gt;

   &lt;?php if ( is_archive() &#124;&#124; is_search() ) : // Only display excerpts for archives and search. ?&gt;
    &lt;div class=&quot;entry-summary&quot;&gt;
     &lt;?php the_excerpt(); ?&gt; 
    &lt;/div&gt;&lt;!-- .entry-summary --&gt;
   &lt;?php else : ?&gt;
    &lt;div class=&quot;entry-content&quot;&gt;

    &lt;!---------------------------------------------------------&gt;
     &lt;?php the_content_limit(320, &#039;read more...&#039; ); ?&gt;
    &lt;!---------------------------------------------------------&gt;

     &lt;?php wp_link_pages( array( &#039;before&#039; =&gt; &#039;&lt;div class=&quot;page-link&quot;&gt;&#039; . __( &#039;Pages:&#039;, &#039;twentyten&#039; ), &#039;after&#039; =&gt; &#039;&lt;/div&gt;&#039; ) ); ?&gt;
    &lt;/div&gt;&lt;!-- .entry-content --&gt;
    &lt;?php endif; ?&gt;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Maurintius, </p>
<p>Every WordPress site is created differently, some have the loop built into pages and as you can see Twenty Ten has it’s own loop file. Basically, do a search for “the_content” and replace it with the new code. For example in the case of Twenty Ten: loop.php: Line 122:<br />
<pre><code>
&lt;?php /* How to display all other posts. */ ?&gt;
 &lt;?php else : ?&gt;
&nbsp;&nbsp;&lt;div id=&quot;post-&lt;?php the_ID(); ?&gt;&quot; &lt;?php post_class(); ?&gt;&gt;
&nbsp;&nbsp; &lt;h2 class=&quot;entry-title&quot;&gt;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot; title=&quot;&lt;?php printf( esc_attr__( &#039;Permalink to %s&#039;, &#039;twentyten&#039; ), the_title_attribute( &#039;echo=0&#039; ) ); ?&gt;&quot; rel=&quot;bookmark&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;
&nbsp;&nbsp; &lt;div class=&quot;entry-meta&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;?php twentyten_posted_on(); ?&gt;
&nbsp;&nbsp; &lt;/div&gt;&lt;!-- .entry-meta --&gt;

&nbsp;&nbsp; &lt;?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class=&quot;entry-summary&quot;&gt;
&nbsp;&nbsp;&nbsp;&nbsp; &lt;?php the_excerpt(); ?&gt; 
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;&lt;!-- .entry-summary --&gt;
&nbsp;&nbsp; &lt;?php else : ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;div class=&quot;entry-content&quot;&gt;

&nbsp;&nbsp;&nbsp;&nbsp;&lt;!---------------------------------------------------------&gt;
&nbsp;&nbsp;&nbsp;&nbsp; &lt;?php the_content_limit(320, &#039;read more...&#039; ); ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;!---------------------------------------------------------&gt;

&nbsp;&nbsp;&nbsp;&nbsp; &lt;?php wp_link_pages( array( &#039;before&#039; =&gt; &#039;&lt;div class=&quot;page-link&quot;&gt;&#039; . __( &#039;Pages:&#039;, &#039;twentyten&#039; ), &#039;after&#039; =&gt; &#039;&lt;/div&gt;&#039; ) ); ?&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;/div&gt;&lt;!-- .entry-content --&gt;
&nbsp;&nbsp;&nbsp;&nbsp;&lt;?php endif; ?&gt;
</code></pre></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Doc4</title>
		<link>http://www.doc4design.com/plugins/limit-post/comment-page-2/#comment-1036</link>
		<dc:creator>Doc4</dc:creator>
		<pubDate>Mon, 20 Dec 2010 05:26:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/wp/?p=37#comment-1036</guid>
		<description>Ohgfh, 

Please take note that this is an &quot;add-on&quot; to another plugin not created by this company, hence the lack of instructions. If you don&#039;t want to ask for assistance then please take a moment and read the post.</description>
		<content:encoded><![CDATA[<p>Ohgfh, </p>
<p>Please take note that this is an “add-on” to another plugin not created by this company, hence the lack of instructions. If you don’t want to ask for assistance then please take a moment and read the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maurintius</title>
		<link>http://www.doc4design.com/plugins/limit-post/comment-page-2/#comment-1027</link>
		<dc:creator>Maurintius</dc:creator>
		<pubDate>Sun, 19 Dec 2010 01:39:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.doc4design.com/wp/?p=37#comment-1027</guid>
		<description>I&#039;m using the default theme of Wordpress &quot;Twenty Ten&quot; but I don&#039;t know much about scripting so I don&#039;t know where to put the code. I think I figured out that it needs to be in the loop.php file but where excactly? Can someone help me?

Thanks 

grtz</description>
		<content:encoded><![CDATA[<p>I’m using the default theme of WordPress “Twenty Ten” but I don’t know much about scripting so I don’t know where to put the code. I think I figured out that it needs to be in the loop.php file but where excactly? Can someone help me?</p>
<p>Thanks </p>
<p>grtz</p>
]]></content:encoded>
	</item>
</channel>
</rss>

