 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>IT Answers &#187; WordPress</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers</link>
	<description></description>
	<lastBuildDate>Mon, 20 May 2013 00:58:28 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Trying to Track down best WordPress Plugin for Facebook integration</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/trying-to-track-down-best-wordpress-plugin-for-facebook-integration/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/trying-to-track-down-best-wordpress-plugin-for-facebook-integration/#comments</comments>
		<pubDate>Tue, 12 Mar 2013 19:20:45 +0000</pubDate>
		<dc:creator>Apatheticnow</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/trying-to-track-down-best-wordpress-plugin-for-facebook-integration/</guid>
		<description><![CDATA[New Discussion Post by Michelle Greenlee]]></description>
				<content:encoded><![CDATA[New Discussion Post by Michelle Greenlee]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/trying-to-track-down-best-wordpress-plugin-for-facebook-integration/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress function syntax errors</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/wordpress-function-syntax-errors/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/wordpress-function-syntax-errors/#comments</comments>
		<pubDate>Mon, 23 Aug 2010 00:52:00 +0000</pubDate>
		<dc:creator>Whatsthebigidea</dc:creator>
				<category><![CDATA[PHP Coding]]></category>
		<category><![CDATA[Syntax errors]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#8217;m trying to embed a WordPress plugin function/shortcut within another which because of its poorly written syntax produces errors: '; $width = 300; echo bm_mshot ($url, $width); ?&#62;" /&#62; Any help rewriting [for a wannabe programmer] is appreciated! Thanks.]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m trying to embed a WordPress plugin function/shortcut within another which because of its poorly written syntax produces errors:</p>
<pre><img src="" />';
$width = 300;
echo bm_mshot ($url, $width);
?&gt;" /&gt;</pre>
<p>Any help rewriting [for a wannabe programmer] is appreciated! Thanks.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/wordpress-function-syntax-errors/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress- Displaying and layering custom fields/posts</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/wordpress-displaying-and-layering-custom-fieldsposts/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/wordpress-displaying-and-layering-custom-fieldsposts/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 17:52:02 +0000</pubDate>
		<dc:creator>Duiwel</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Developers]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Wordpress 3.0]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi- I am somewhat new to both WordPress and PHP, and I wanted to get advice on the best way to tackle my problem as I have had little luck doing it successfully so far. There are two jobs I want to handle: First of all, I want to have a conditional include on my [...]]]></description>
				<content:encoded><![CDATA[<p>Hi-</p>
<p>I am somewhat new to both WordPress and PHP, and I wanted to get advice on the best way to tackle my problem as I have had little luck doing it successfully so far.</p>
<p>There are two jobs I want to handle:</p>
<p>First of all, I want to have a conditional include on my home page that does the following;</p>
<p>Find a custom post type home_content (only ever going to be 1 post, which is ID 76 &#8211; if that helps)<br />
Display 3 custom fields from that post&#8230; the values for today_on front_widget_a &#038; front_widget_b</p>
<p>(I guess a secondary question would be &#8211; can I even pass shortcode through a custom field, because that&#8217;s what those widgets are being generated from, is shortcode from a plug-in)</p>
<p>That&#8217;s pretty much it.  I&#8217;ve tried various combination&#8217;s of get_posts and get_post_meta without much success.  Either I get some syntax errors I can&#8217;t figure out (and trust me I&#8217;ve combed my code many times for missing semi-colons and the like).  That or I get a result that makes no sense.</p>
<p>The second one is a bit more difficult.</p>
<p>Basically trying to turn a part of my WordPress into a bit of a CMS-style feature.  Basically, I have 2 additional custom post types, one called tag_page_layout and one called tag_page_data.</p>
<p>When a Tag in a post is clicked on, I want the Tag page to grab custom field 1 from the tag_page_layout, and then a couple custom fields worth of data from tag_page_data.  </p>
<p>I probably wouldn&#8217;t even need the two post types if I took the time to learn the PHP or HTML code for making tabs, but again, I&#8217;m using a plug-in for WordPress shortcode (which, if you see above &#8211; I&#8217;m not even sure is going to work right &#8211; of course if its not I&#8217;m willing to make multiple of these &#8216;layout&#8217; posts so each [tab:NAME] shortcode bit is in it&#8217;s own post-content area.  </p>
<p>So&#8230; the tag page will basically have a big bit of code that runs before the loop&#8230;. it knows its on a tag page so it starts loading Custom Field 1 from the tag_page_layout, which is essentially a bit of code that starts up a Tab-separated data presentation area.  Then it&#8217;s got to take the tag clicked and match it with the same tag ID from custom post type #2 &#8211; the tag_page_data group.  Then it will grab the first 3 or so fields from that page, swap back to the layout post, throw another custom field from there to start another tab, and so on and so forth, until a [tab:END] and it runs the loop.</p>
<p>I could include all my various attempts and bits of code that never worked or half worked, but I&#8217;ve been around so many circles trying to construct this.  Like I said, my coding knowledge is limited but I can usually feel my way around, however these finer points of trying to make WordPress a little more CMS-like seem to be harder for me to grasp.  Any help would be appreciated!</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/wordpress-displaying-and-layering-custom-fieldsposts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Embed .mov wordpress</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/embed-mov-wordpress/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/embed-mov-wordpress/#comments</comments>
		<pubDate>Sun, 30 May 2010 11:50:12 +0000</pubDate>
		<dc:creator>Cmc</dc:creator>
				<category><![CDATA[embed .mov]]></category>
		<category><![CDATA[Object Linking and Embedding]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[After embedding my .mov file it appears on screen zoomed in &#8211; how can I get it to show the full movie picture?]]></description>
				<content:encoded><![CDATA[<p>After embedding my .mov file it appears on screen zoomed in &#8211; how can I get it to show the full movie picture?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/embed-mov-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RSYNC Questions.</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/rsync-questions/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/rsync-questions/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 14:30:56 +0000</pubDate>
		<dc:creator>Karl Gechlik</dc:creator>
				<category><![CDATA[amazon s3]]></category>
		<category><![CDATA[cron]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Backup]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I have a wordpress installation that lives on a FreeBSD machine running apache. I need to create a cron job that will run Rsync and push the files via ssh or ftp to a backup server. I also need to do the same thing to get the files to amazon S3. Can you help me [...]]]></description>
				<content:encoded><![CDATA[<p>I have a wordpress installation that lives on a FreeBSD machine running apache. I need to create a cron job that will run Rsync and push the files via ssh or ftp to a backup server. I also need to do the same thing to get the files to amazon S3. Can you help me out? I have this so far</p>
<p>rsync -e ssh -avz &#8211;recursive user@remoteServer:/remotepath /usr/www/users/</p>
<p>I get prompted for the password and then it gives me a whole bunch of access denied errors.</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/rsync-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create a cron job to backup wordpress files</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/create-a-cron-job-to-backup-wordpress-files/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/create-a-cron-job-to-backup-wordpress-files/#comments</comments>
		<pubDate>Mon, 13 Jul 2009 14:42:41 +0000</pubDate>
		<dc:creator>Karl Gechlik</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress 2.6]]></category>
		<category><![CDATA[WordPress Backup]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Can someone show me a sample cron job that will backup a default wordpress installation &#8211; I am talking about the files not the DB. That will be seperate. The job should backup via ftp. Thanks in advance!]]></description>
				<content:encoded><![CDATA[<p>Can someone show me a sample cron job that will backup a default wordpress installation &#8211; I am talking about the files not the DB. That will be seperate. The job should backup via ftp. Thanks in advance!</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/create-a-cron-job-to-backup-wordpress-files/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Extract text from HTML pages, separate into articles, extracts keywords, tag with keywords, import to wordpress</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/extract-text-from-html-pages-separate-into-articles-extracts-keywords-tag-with-keywords-import-to-wordpress/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/extract-text-from-html-pages-separate-into-articles-extracts-keywords-tag-with-keywords-import-to-wordpress/#comments</comments>
		<pubDate>Wed, 10 Dec 2008 15:42:49 +0000</pubDate>
		<dc:creator>Tangled</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Microsoft Excel]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[We run a niche news B2B news service; every day we send out an email with between 10 and 30 stories in it. This email is then turned into an html page including all the stories, and uploaded to our website. This has been going on for around 6 years, so I reckon there are [...]]]></description>
				<content:encoded><![CDATA[<p>We run a niche news B2B news service; every day we send out an email with between 10 and 30 stories in it. This email is then turned into an html page including all the stories, and uploaded to our website. This has been going on for around 6 years, so I reckon there are about 1500 individual HTML pages, containing somewhere between 15,000 and 40,000 stories.</p>
<p>I&#8217;ve been tasked with creating a new site, using wordpress. I&#8217;m fine with this, but I&#8217;m stuck when it gets to putting all the old archive stories into wordpress as separate articles.</p>
<p>Here&#8217;s what I need to do:</p>
<p>Scrape all the text from the HTML pages.</p>
<p>Take the text and separate it into individual articles with the following fields: article name, article body, date, article position. Article position refers to whether the story is first, second, third or whatever on the HTML page.</p>
<p>Parse/spider the article titles and article bodies to create a list of possible tags, and then match these against each article to generate suggested tags.</p>
<p>If the tagging bit isn&#8217;t possible, then it would be acceptable for them just to be tagged with &#8220;archive&#8221; or something, and they can be manually tagged as and when is possible.</p>
<p>Save the outputted data (article title, article body, date, position, tag1, tag2, tag3) in whatever form makes sense. &#8211; excel/XML/whatever</p>
<p>Import the data into wordpress.</p>
<p>I have a good understanding of what needs to be done, and a rough idea of how to do it, I just lack the detailed technical knowledge to put it together.</p>
<p>Any suggestions/help would be much appreciated!</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/extract-text-from-html-pages-separate-into-articles-extracts-keywords-tag-with-keywords-import-to-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List WordPress categories in 2.6</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/list-wordpress-categories-in-26/</link>
		<comments>http://itknowledgeexchange.techtarget.com/itanswers/list-wordpress-categories-in-26/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 19:23:24 +0000</pubDate>
		<dc:creator>Tombrady</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress 2.6]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[I&#8217;m trying to get a list of categories associated to a specific post in WordPress 2.6. I&#8217;ve just upgraded to this version (from a very old version) and the get_the_categories() function is returning an empty array. Looking at the database, there are categories assigned to the post in question, but it seems that something didn&#8217;t [...]]]></description>
				<content:encoded><![CDATA[<p>I&#8217;m trying to get a list of categories associated to a specific post in WordPress 2.6. I&#8217;ve just upgraded to this version (from a very old version) and the get_the_categories() function is returning an empty array.</p>
<p>Looking at the database, there are categories assigned to the post in question, but it seems that something didn&#8217;t copy over with the database conversion.</p>
<p>If I edit the post and assign a new category to it from the admin page, that new category is returned by get_the_categories()</p>
<p>Is there a different function I should be using, or did something go awry during my upgrade?</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/itanswers/list-wordpress-categories-in-26/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/26 queries in 0.051 seconds using memcached
Object Caching 766/850 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-20 02:48:22 -->