<?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: BibleGateway Verse-of-the-Day</title>
	<atom:link href="http://zaikos.com/coding/wp-plugins/biblegateway-votd/feed/" rel="self" type="application/rss+xml" />
	<link>http://zaikos.com</link>
	<description>Dave&#039;s blog.</description>
	<lastBuildDate>Wed, 03 Aug 2011 18:29:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Dave Zaikos</title>
		<link>http://zaikos.com/coding/wp-plugins/biblegateway-votd/#comment-22</link>
		<dc:creator>Dave Zaikos</dc:creator>
		<pubDate>Sun, 17 Jul 2011 22:25:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/wp/?page_id=338#comment-22</guid>
		<description>Yes, I will add this version if it&#039;s available for the verse of the day.</description>
		<content:encoded><![CDATA[<p>Yes, I will add this version if it&#8217;s available for the verse of the day.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kurt Gwartney</title>
		<link>http://zaikos.com/coding/wp-plugins/biblegateway-votd/#comment-21</link>
		<dc:creator>Kurt Gwartney</dc:creator>
		<pubDate>Sun, 17 Jul 2011 16:36:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/wp/?page_id=338#comment-21</guid>
		<description>I see the new CEB is on the Bible Gateway site. Can it be added to the list in the plug in? We just started using this and really like it. Thanks for all the hard work on this plug in. Kurt Gwartney, minister of communications.</description>
		<content:encoded><![CDATA[<p>I see the new CEB is on the Bible Gateway site. Can it be added to the list in the plug in? We just started using this and really like it. Thanks for all the hard work on this plug in. Kurt Gwartney, minister of communications.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Zaikos</title>
		<link>http://zaikos.com/coding/wp-plugins/biblegateway-votd/#comment-20</link>
		<dc:creator>Dave Zaikos</dc:creator>
		<pubDate>Mon, 11 Jul 2011 03:54:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/wp/?page_id=338#comment-20</guid>
		<description>The verse is handled client-side so this would have to be done with JavaScripting after the content is loaded. I am planning to release an updated version in the near future that utilizes jQuery to make JSON requests (this would prevent the page loading from pausing if Bible Gateway&#039;s web site was running a bit slow), but because WordPress is merely injecting JavaScript into the page, there&#039;s nothing internal that would allow for excerpting.

This kind of ties in with an &lt;a href=&quot;#comment-6101&quot; rel=&quot;nofollow&quot;&gt;earlier comment&lt;/a&gt; and the solution would be the same: Have WordPress query Bible Gateway on a cron schedule, cache the verse and serve it up. If the verse were cached, WordPress could manipulate it any way we want. It could even be pluggable so one could add an &quot;apply_filters&quot; in their functions.php theme file to filter the text in some way. I suppose it could be done---I&#039;ll consider it---but I can&#039;t promise it for the next release.</description>
		<content:encoded><![CDATA[<p>The verse is handled client-side so this would have to be done with JavaScripting after the content is loaded. I am planning to release an updated version in the near future that utilizes jQuery to make JSON requests (this would prevent the page loading from pausing if Bible Gateway&#8217;s web site was running a bit slow), but because WordPress is merely injecting JavaScript into the page, there&#8217;s nothing internal that would allow for excerpting.</p>
<p>This kind of ties in with an <a href="#comment-6101" rel="nofollow">earlier comment</a> and the solution would be the same: Have WordPress query Bible Gateway on a cron schedule, cache the verse and serve it up. If the verse were cached, WordPress could manipulate it any way we want. It could even be pluggable so one could add an &#8220;apply_filters&#8221; in their functions.php theme file to filter the text in some way. I suppose it could be done&#8212;I&#8217;ll consider it&#8212;but I can&#8217;t promise it for the next release.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://zaikos.com/coding/wp-plugins/biblegateway-votd/#comment-19</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Mon, 11 Jul 2011 00:19:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/wp/?page_id=338#comment-19</guid>
		<description>Is it possible to excerpt or truncate the verse of the day results?  I&#039;d like to display an excerpted version on our homepage and link it to the post.  

I only want to truncate this post and no others. 

Any help would be appreciated.

Thanks,

Mike</description>
		<content:encoded><![CDATA[<p>Is it possible to excerpt or truncate the verse of the day results?  I&#8217;d like to display an excerpted version on our homepage and link it to the post.  </p>
<p>I only want to truncate this post and no others. </p>
<p>Any help would be appreciated.</p>
<p>Thanks,</p>
<p>Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Zaikos</title>
		<link>http://zaikos.com/coding/wp-plugins/biblegateway-votd/#comment-18</link>
		<dc:creator>Dave Zaikos</dc:creator>
		<pubDate>Thu, 24 Mar 2011 18:10:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/wp/?page_id=338#comment-18</guid>
		<description>Yes, I have considered this solution as well. Delays on BibleGateway.com&#039;s end could be circumvented by using WordPress&#039;s internal cron schedule to do the fetching and cache the results. It would only need to be done once daily (around 5:00 a.m. UTC). Using cron would result in WordPress fetching the verse during a load that is not associated with displaying the web site to the visitor; so there would be no slow down. However, I am reluctant to implement this because it depends on the web server being able to fetch external data and BibleGateway.com may not have updated their verse during the load, which means we&#039;d have to make multiple attempts to get the new verse. It honestly seems like a waste of server resources for something so small.

To be quite honest, the best solution would be for BibleGateway to allow a JSONP request for the information. This would let us skip their JavaScript code altogether and use jQuery to load the content and display it as we see fit.

Nevertheless, there are a few options I&#039;m looking at and plan to test for the next release.

&lt;strong&gt;Update:&lt;/strong&gt; It looks like Bible Gateway has updated their site to support JSON requests. This means I can update the plugin so it loads the verse after the rest of the page has loaded. Not sure when I&#039;ll have the update out, but you can expect that in the next version.</description>
		<content:encoded><![CDATA[<p>Yes, I have considered this solution as well. Delays on BibleGateway.com&#8217;s end could be circumvented by using WordPress&#8217;s internal cron schedule to do the fetching and cache the results. It would only need to be done once daily (around 5:00 a.m. UTC). Using cron would result in WordPress fetching the verse during a load that is not associated with displaying the web site to the visitor; so there would be no slow down. However, I am reluctant to implement this because it depends on the web server being able to fetch external data and BibleGateway.com may not have updated their verse during the load, which means we&#8217;d have to make multiple attempts to get the new verse. It honestly seems like a waste of server resources for something so small.</p>
<p>To be quite honest, the best solution would be for BibleGateway to allow a JSONP request for the information. This would let us skip their JavaScript code altogether and use jQuery to load the content and display it as we see fit.</p>
<p>Nevertheless, there are a few options I&#8217;m looking at and plan to test for the next release.</p>
<p><strong>Update:</strong> It looks like Bible Gateway has updated their site to support JSON requests. This means I can update the plugin so it loads the verse after the rest of the page has loaded. Not sure when I&#8217;ll have the update out, but you can expect that in the next version.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nikedunkhi</title>
		<link>http://zaikos.com/coding/wp-plugins/biblegateway-votd/#comment-17</link>
		<dc:creator>nikedunkhi</dc:creator>
		<pubDate>Thu, 24 Mar 2011 09:51:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/wp/?page_id=338#comment-17</guid>
		<description>A possible solution is loaded in the back lines from BibleGateway using PHP to open a remote URL. However, if the BibleGateway shut down or running slowly, it will cause major problems loading the page or time out.
The opinion post above by them maybe right !</description>
		<content:encoded><![CDATA[<p>A possible solution is loaded in the back lines from BibleGateway using PHP to open a remote URL. However, if the BibleGateway shut down or running slowly, it will cause major problems loading the page or time out.<br />
The opinion post above by them maybe right !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://zaikos.com/coding/wp-plugins/biblegateway-votd/#comment-16</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Sat, 22 Jan 2011 22:35:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/wp/?page_id=338#comment-16</guid>
		<description>Hi Jeeva,

Inside your PHP code you would do something like this:

&lt;code&gt;echo do_shortcode( &#039;[bible-votd]&#039; );&lt;/code&gt;

All of the available options for the shortcode are also usable. So you can force the use of, for example, the KJV by using:

&lt;code&gt;echo do_shortcode( &#039;[bible-votd ver=&quot;9&quot;]&#039; );&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Hi Jeeva,</p>
<p>Inside your PHP code you would do something like this:</p>
<p><code>echo do_shortcode( '[bible-votd]' );</code></p>
<p>All of the available options for the shortcode are also usable. So you can force the use of, for example, the KJV by using:</p>
<p><code>echo do_shortcode( '[bible-votd ver="9"]' );</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeeva Pakerla</title>
		<link>http://zaikos.com/coding/wp-plugins/biblegateway-votd/#comment-15</link>
		<dc:creator>Jeeva Pakerla</dc:creator>
		<pubDate>Sat, 22 Jan 2011 07:21:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/wp/?page_id=338#comment-15</guid>
		<description>Hi, 
  I am trying to have the plugin show up on the home page. For which I need to include code in a PHP file. The plugin works fine in a post or a page. But how do I get to show up the plugin using the short code in the PHP file. Is there a seperate PHP code to show the plugin in the website. Please let me know how I can fix this error.

Thanks, 
Jeeva</description>
		<content:encoded><![CDATA[<p>Hi,<br />
  I am trying to have the plugin show up on the home page. For which I need to include code in a PHP file. The plugin works fine in a post or a page. But how do I get to show up the plugin using the short code in the PHP file. Is there a seperate PHP code to show the plugin in the website. Please let me know how I can fix this error.</p>
<p>Thanks,<br />
Jeeva</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://zaikos.com/coding/wp-plugins/biblegateway-votd/#comment-14</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Thu, 06 Jan 2011 17:45:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/wp/?page_id=338#comment-14</guid>
		<description>If I understand you correctly, you want each verse of the day to almost as a new post in its own category? That&#039;s really not the function of this plugin. The plugin simply pulls BibleGateway.com&#039;s verse of the day and inserts it wherever the shortcode or widget exists.

The shortcode option is there because it lets users put the verse on a page. That it works within posts is a carry-over to the way WordPress processes text. I could have removed the option but it would be an extra line of code to do it and didn&#039;t seem necessary.

Having BibleGateway&#039;s verse appear as a new post is certainly possible for a plugin based on the way WordPress is built but beyond the scope of this particular plugin.</description>
		<content:encoded><![CDATA[<p>If I understand you correctly, you want each verse of the day to almost as a new post in its own category? That&#8217;s really not the function of this plugin. The plugin simply pulls BibleGateway.com&#8217;s verse of the day and inserts it wherever the shortcode or widget exists.</p>
<p>The shortcode option is there because it lets users put the verse on a page. That it works within posts is a carry-over to the way WordPress processes text. I could have removed the option but it would be an extra line of code to do it and didn&#8217;t seem necessary.</p>
<p>Having BibleGateway&#8217;s verse appear as a new post is certainly possible for a plugin based on the way WordPress is built but beyond the scope of this particular plugin.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gayatri</title>
		<link>http://zaikos.com/coding/wp-plugins/biblegateway-votd/#comment-13</link>
		<dc:creator>Gayatri</dc:creator>
		<pubDate>Thu, 06 Jan 2011 02:15:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.zaikos.com/wp/?page_id=338#comment-13</guid>
		<description>Hey. 
So a little confused. 
I installed this on a client site, and I put the shortcode in a post. 
What I really want is for this to refresh daily and show up in a &#039;category&#039; called daily verse every day. 

How can i do this?</description>
		<content:encoded><![CDATA[<p>Hey.<br />
So a little confused.<br />
I installed this on a client site, and I put the shortcode in a post.<br />
What I really want is for this to refresh daily and show up in a &#8216;category&#8217; called daily verse every day. </p>
<p>How can i do this?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

