<?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: Get Only The URL Of The Previous And Next Posts In WordPress	</title>
	<atom:link href="https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/</link>
	<description>The Best Cincinnati Web Design Agency</description>
	<lastBuildDate>Wed, 30 Nov 2016 05:08:00 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>
		By: John Freeman		</title>
		<link>https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/#comment-455</link>

		<dc:creator><![CDATA[John Freeman]]></dc:creator>
		<pubDate>Wed, 30 Nov 2016 05:08:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=383#comment-455</guid>

					<description><![CDATA[thank you for cutting through the b.s. with a simple answer to the question I&#039;ve been gnawing at all afternoon!]]></description>
			<content:encoded><![CDATA[<p>thank you for cutting through the b.s. with a simple answer to the question I&#8217;ve been gnawing at all afternoon!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rob Richardson		</title>
		<link>https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/#comment-375</link>

		<dc:creator><![CDATA[Rob Richardson]]></dc:creator>
		<pubDate>Fri, 15 May 2015 04:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=383#comment-375</guid>

					<description><![CDATA[Thanks very much! I was stunned to find this was not a simple function of WP...]]></description>
			<content:encoded><![CDATA[<p>Thanks very much! I was stunned to find this was not a simple function of WP&#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ricardo Haas		</title>
		<link>https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/#comment-283</link>

		<dc:creator><![CDATA[Ricardo Haas]]></dc:creator>
		<pubDate>Fri, 24 Jan 2014 12:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=383#comment-283</guid>

					<description><![CDATA[An alternative for next posts page 


function get_nex_post_link_href( $max_page = 0 ){


    global $paged, $wp_query;


    if ( !$max_page )
        $max_page = $wp_query-&#062;max_num_pages;


    if ( !$paged )
        $paged = 1;


    $nextpage = intval($paged) + 1;


    if ( !is_single() &#038;&#038; ( $nextpage &#060;= $max_page ) ) {


        return next_posts( $max_page, false );
    }


}]]></description>
			<content:encoded><![CDATA[<p>An alternative for next posts page </p>
<p>function get_nex_post_link_href( $max_page = 0 ){</p>
<p>    global $paged, $wp_query;</p>
<p>    if ( !$max_page )<br />
        $max_page = $wp_query-&gt;max_num_pages;</p>
<p>    if ( !$paged )<br />
        $paged = 1;</p>
<p>    $nextpage = intval($paged) + 1;</p>
<p>    if ( !is_single() &amp;&amp; ( $nextpage &lt;= $max_page ) ) {</p>
<p>        return next_posts( $max_page, false );<br />
    }</p>
<p>}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nathz Ryuzaki		</title>
		<link>https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/#comment-216</link>

		<dc:creator><![CDATA[Nathz Ryuzaki]]></dc:creator>
		<pubDate>Fri, 06 Sep 2013 19:38:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=383#comment-216</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/#comment-215&quot;&gt;Nathz Ryuzaki&lt;/a&gt;.

sorry i understand now.. I already fix it.. thanks :)]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/#comment-215">Nathz Ryuzaki</a>.</p>
<p>sorry i understand now.. I already fix it.. thanks 🙂</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nathz Ryuzaki		</title>
		<link>https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/#comment-215</link>

		<dc:creator><![CDATA[Nathz Ryuzaki]]></dc:creator>
		<pubDate>Fri, 06 Sep 2013 19:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=383#comment-215</guid>

					<description><![CDATA[hello.. i try ur script but not working yet..

where i should place $prev = get_permalink(get_adjacent_post(false,&#039;&#039;,false)); ?]]></description>
			<content:encoded><![CDATA[<p>hello.. i try ur script but not working yet..</p>
<p>where i should place $prev = get_permalink(get_adjacent_post(false,&#8221;,false)); ?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: website development		</title>
		<link>https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/#comment-147</link>

		<dc:creator><![CDATA[website development]]></dc:creator>
		<pubDate>Thu, 23 May 2013 11:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=383#comment-147</guid>

					<description><![CDATA[When you are designing a website must make plan what you want and what is your requirement. If you understand the client requirement clearly or planed what you do definitely you will able to create a fabulous website development. In the word-press website development is too east. thanks for give me such good ideas.]]></description>
			<content:encoded><![CDATA[<p>When you are designing a website must make plan what you want and what is your requirement. If you understand the client requirement clearly or planed what you do definitely you will able to create a fabulous website development. In the word-press website development is too east. thanks for give me such good ideas.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: elatest News		</title>
		<link>https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/#comment-100</link>

		<dc:creator><![CDATA[elatest News]]></dc:creator>
		<pubDate>Mon, 18 Mar 2013 12:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=383#comment-100</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/#comment-22&quot;&gt;Jan Leeks&lt;/a&gt;.

yep me too looking for the answer of @537b184b583d289add8757186da5cd22:disqus]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/#comment-22">Jan Leeks</a>.</p>
<p>yep me too looking for the answer of @537b184b583d289add8757186da5cd22:disqus</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rakesh Rathore		</title>
		<link>https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/#comment-94</link>

		<dc:creator><![CDATA[Rakesh Rathore]]></dc:creator>
		<pubDate>Thu, 07 Feb 2013 06:26:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=383#comment-94</guid>

					<description><![CDATA[thanks you its working]]></description>
			<content:encoded><![CDATA[<p>thanks you its working</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Suco		</title>
		<link>https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/#comment-77</link>

		<dc:creator><![CDATA[Suco]]></dc:creator>
		<pubDate>Mon, 17 Dec 2012 15:32:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=383#comment-77</guid>

					<description><![CDATA[Thank you! excellent tip.]]></description>
			<content:encoded><![CDATA[<p>Thank you! excellent tip.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Justin		</title>
		<link>https://www.ideasandpixels.com/articles/get-only-url-of-next-and-previous-posts-wordpress/#comment-42</link>

		<dc:creator><![CDATA[Justin]]></dc:creator>
		<pubDate>Mon, 06 Aug 2012 00:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://ideasandpixels.com/?p=383#comment-42</guid>

					<description><![CDATA[Thank you, this is exactly what I needed!]]></description>
			<content:encoded><![CDATA[<p>Thank you, this is exactly what I needed!</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
