<?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>lilianev &#187; Wordpress</title>
	<atom:link href="http://www.lilianeville.com/blog/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lilianeville.com/blog</link>
	<description>web stuff, animals, technology,  news, and whatever else she feels like writing about...</description>
	<lastBuildDate>Thu, 09 Jun 2011 12:48:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Display WordPress RSS on an External Website</title>
		<link>http://www.lilianeville.com/blog/2011/03/display-wordpress-rss-on-an-external-website/</link>
		<comments>http://www.lilianeville.com/blog/2011/03/display-wordpress-rss-on-an-external-website/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 18:30:02 +0000</pubDate>
		<dc:creator>lilianev</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[RSS]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.lilianeville.com/blog/?p=404</guid>
		<description><![CDATA[Lately I&#8217;ve been adding custom WordPress RSS feeds on external websites. For example, we have a main news website for the University of Tennessee, Knoxville. Different initiatives and programs on campus like to have a feed on their home page (or internal page) of news stories about their initiative or program (excluding all the other [...]]]></description>
			<content:encoded><![CDATA[<p>Lately I&#8217;ve been adding custom WordPress RSS feeds on external websites. For example, we have a main news website for the University of Tennessee, Knoxville. Different initiatives and programs on campus like to have a feed on their home page (or internal page) of news stories about their initiative or program (excluding all the other news).</p>
<p>First, the posts in WordPress need to be tagged consistently and regularly. I know that&#8217;s a lot to ask, but you&#8217;ll see why it&#8217;s important right away (besides, it&#8217;s a best practice).</p>
<p>You&#8217;ll need to decide which tag of WordPress stories you&#8217;d like to embed on an external (non-WordPress) website. For our example, I&#8217;m going to use the tag &#8220;research&#8221; from the UTK news website, <a href="http://www.utk.edu/tntoday/">Tennessee Today</a>.</p>
<p>Grab the URL of all posts tagged &#8220;research&#8221;: <a href="http://www.utk.edu/tntoday/tag/research/">http://www.utk.edu/tntoday/tag/research/</a></p>
<p>In WordPress, all you need to do to create a custom RSS feed is add /feed/ to the end of the URL: <a href="http://www.utk.edu/tntoday/tag/research/feed">http://www.utk.edu/tntoday/tag/research/feed/</a></p>
<p>Copy and paste the following code in to a PHP file:</p>
<pre>&lt;?php</pre>
<pre>// main calendar feed
// replace with your custom WordPress feed URL
$feedURL = "http://www.utk.edu/tntoday/tag/research/feed/";</pre>
<pre>// read feed into SimpleXML
$sxml = simplexml_load_file($feedURL);</pre>
<pre>foreach ($sxml-&gt;channel-&gt;item as $val) 
{</pre>
<pre>	$title = stripslashes($val-&gt;title);
        $finalTitle = str_replace("â€™", "'",$title);</pre>
<pre>	$description = stripslashes($val-&gt;description);
        $finalDescription = str_replace("â€™", "'",$description);</pre>
<pre>	$link = stripslashes($val-&gt;link);</pre>
<pre>	$date = stripslashes($val-&gt;pubDate);
        $dateForm = substr($date, 0, 16);</pre>
<pre>	echo "&lt;small&gt;$dateForm&lt;/small&gt;";
        echo "&lt;p&gt;&lt;a href='$link' target='_blank'&gt;$finalTitle&lt;/a&gt;
        &lt;br /&gt;$finalDescription&lt;/p&gt;\n";</pre>
<pre>}</pre>
<pre>?&gt;</pre>
<p>Save and upload this PHP file to your website.</p>
<p>Voila! Custom WordPress RSS feed on your external (non-WordPress) website!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lilianeville.com/blog/2011/03/display-wordpress-rss-on-an-external-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Interface Splash</title>
		<link>http://www.lilianeville.com/blog/2011/02/interface-splash/</link>
		<comments>http://www.lilianeville.com/blog/2011/02/interface-splash/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 13:17:43 +0000</pubDate>
		<dc:creator>lilianev</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[UI]]></category>
		<category><![CDATA[user interface]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.lilianeville.com/blog/?p=387</guid>
		<description><![CDATA[In the last two or so weeks, I noticed that Google did one of their slight tweaks to the interface that you just barely notice. At the top, the links to Gmail, Calendar, Documents, Maps, etc and the account name have changed (click for larger image). As far as I know, they rolled out this [...]]]></description>
			<content:encoded><![CDATA[<p>In the last two or so weeks, I noticed that Google did one of their slight tweaks to the interface that you just barely notice. At the top, the links to Gmail, Calendar, Documents, Maps, etc and the account name have changed (click for larger image).<br />
<a href="http://www.lilianeville.com/blog/wp-content/uploads/2011/02/home.png"><img src="http://www.lilianeville.com/blog/wp-content/uploads/2011/02/home-300x83.png" alt="" title="home" width="300" height="83" class="aligncenter size-medium wp-image-388" /></a></p>
<p>As far as I know, they rolled out this changed in Gmail, Documents, and Maps&#8230;<br />
<a href="http://www.lilianeville.com/blog/wp-content/uploads/2011/02/Screen-shot-2011-02-28-at-8.04.40-AM1.png"><img src="http://www.lilianeville.com/blog/wp-content/uploads/2011/02/Screen-shot-2011-02-28-at-8.04.40-AM1-300x7.png" alt="" title="Screen shot 2011-02-28 at 8.04.40 AM" width="300" height="7" class="aligncenter size-medium wp-image-398" /></a><a href="http://www.lilianeville.com/blog/wp-content/uploads/2011/02/Screen-shot-2011-02-28-at-8.05.51-AM.png"><img src="http://www.lilianeville.com/blog/wp-content/uploads/2011/02/Screen-shot-2011-02-28-at-8.05.51-AM-300x10.png" alt="" title="Screen shot 2011-02-28 at 8.05.51 AM" width="300" height="10" class="aligncenter size-medium wp-image-393" /></a><a href="http://www.lilianeville.com/blog/wp-content/uploads/2011/02/Screen-shot-2011-02-28-at-8.05.37-AM.png"><img src="http://www.lilianeville.com/blog/wp-content/uploads/2011/02/Screen-shot-2011-02-28-at-8.05.37-AM-300x8.png" alt="" title="Screen shot 2011-02-28 at 8.05.37 AM" width="300" height="8" class="aligncenter size-medium wp-image-392" /></a><br />
&#8230;but not yet in Calendar. I doubt that&#8217;s the full list of where they&#8217;ve rolled it out, but those are the ones that I use regularly and noticed (click for larger image).<br />
<a href="http://www.lilianeville.com/blog/wp-content/uploads/2011/02/old.png"><img src="http://www.lilianeville.com/blog/wp-content/uploads/2011/02/old-300x6.png" alt="" title="old interface" width="300" height="6" class="aligncenter size-medium wp-image-390" /></a></p>
<p>There&#8217;s another interface change out there that I found to be splashy. WordPress 3.1 released last week (yay!) and I updated this website shortly after. Now, when you&#8217;re signed in to your WordPress site and you visit your site, you get an opaque ribbon at the top (similar to Google) of your web page. You can go directly to your profile or dashboard, add a post or page, go to your comments, adjust your menu or widgets, and there is a small bar graph showing site stats. I&#8217;m not sure if that&#8217;s just for me because I have that plug-in, but it&#8217;s freakin cool nonetheless (click for larger image).<br />
<a href="http://www.lilianeville.com/blog/wp-content/uploads/2011/02/lilianev.png"><img src="http://www.lilianeville.com/blog/wp-content/uploads/2011/02/lilianev-300x193.png" alt="" title="lilianev" width="300" height="193" class="aligncenter size-medium wp-image-389" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lilianeville.com/blog/2011/02/interface-splash/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Menu Sexiness in WordPress 3.0 RC2</title>
		<link>http://www.lilianeville.com/blog/2010/06/menu-sexiness-in-wordpress-3-0-rc2/</link>
		<comments>http://www.lilianeville.com/blog/2010/06/menu-sexiness-in-wordpress-3-0-rc2/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 15:27:25 +0000</pubDate>
		<dc:creator>lilianev</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.lilianeville.com/blog/?p=280</guid>
		<description><![CDATA[Don&#8217;t know if you knew it, but I&#8217;m a WP geek. Not the bonafide ones that just live on the forum, but definitely labeled by others and self-identified as a WordPress geek. Anyways, I&#8217;ve been particularly frustrated trying to customize menus in WP 3.0 RC2 because I thought they canned the ability to specify classes [...]]]></description>
			<content:encoded><![CDATA[<p>Don&#8217;t know if you knew it, but I&#8217;m a WP geek. Not the bonafide ones that just live on the forum, but definitely labeled by others and self-identified as a WordPress geek.</p>
<p>Anyways, I&#8217;ve been particularly frustrated trying to customize menus in WP 3.0 RC2 because I thought they canned the ability to specify classes for custom links in the navigation menu. It was there <a href="http://www.lilianeville.com/blog/2010/06/disappointment-in-wp-3-0-rc1/">in beta 2, but when I installed RC1 &#8212; poof! missing!</a> (BTW, I installed RC2 yesterday and it&#8217;s sweet and sexy).</p>
<p>So I&#8217;ve been struggling relentlessly trying to find a work around, and then I found this wonderful and easy to understand article:<br />
<a href="http://www.ivorpadilla.net/cuztomizing-wordpress-custom-menu-icons/">http://www.ivorpadilla.net/cuztomizing-wordpress-custom-menu-icons/</a></p>
<p>THANK you, <a href="http://www.ivorpadilla.net/about-me/">Ivor Padilla</a>. Thank you, thank you very much.</p>
<p>Therefore, when I announced <a href="http://www.lilianeville.com/blog/2010/06/disappointment-in-wp-3-0-rc1/">my major disappointment in RC1</a>, <strong><em>I was entirely uninformed and WRONG</em></strong>. At this point I&#8217;ve written over my RC1 install because I installed RC2 yesterday, BUT I bet that the screen options allowed for classes and targets and more. The thing that makes me want to bang my head against the wall (most) is that when I first installed beta2, I remember messing around with all the different screen options. Apparently I just took stupid pills the morning I decided that WP canned those menu features. Ah, those blasted stupid pills! </p>
<p>BTW&#8230; WordPress 3.0 is so super sick it hurts.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lilianeville.com/blog/2010/06/menu-sexiness-in-wordpress-3-0-rc2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disappointment in WP 3.0 RC1</title>
		<link>http://www.lilianeville.com/blog/2010/06/disappointment-in-wp-3-0-rc1/</link>
		<comments>http://www.lilianeville.com/blog/2010/06/disappointment-in-wp-3-0-rc1/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 19:31:27 +0000</pubDate>
		<dc:creator>lilianev</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.lilianeville.com/blog/?p=267</guid>
		<description><![CDATA[Oh man, I&#8217;m so disappointed right now. Check out these back-end menu widgets in WordPress 3.0 beta 2: Sick, right? You have the ability to specify class, target, and more! AWESOME. Check out these back-end menu widget in WordPress 3.0 Release Candidate 1: Nothing. Nada. None of it. You can specify a title, but really&#8230;. [...]]]></description>
			<content:encoded><![CDATA[<p>Oh man, I&#8217;m so disappointed right now.</p>
<p>Check out these back-end menu widgets in WordPress 3.0 beta 2:<br />
<a href="http://www.lilianeville.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-04-at-3.24.19-PM.png"><img src="http://www.lilianeville.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-04-at-3.24.19-PM-300x299.png" alt="" title="wp3beta2_shot1" width="300" height="299" class="alignleft size-medium wp-image-270"  /></a><br />
<a href="http://www.lilianeville.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-04-at-3.24.55-PM.png"><img src="http://www.lilianeville.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-04-at-3.24.55-PM-293x300.png" alt="" title="wp3beta2_shot2" width="293" height="300"  /></a></p>
<p>Sick, right? You have the ability to specify class, target, and more! AWESOME.</p>
<p>Check out these back-end menu widget in WordPress 3.0 Release Candidate 1:<br />
<a href="http://www.lilianeville.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-04-at-3.25.06-PM.png"><img src="http://www.lilianeville.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-04-at-3.25.06-PM-300x133.png" alt="" title="wp3rc1_shot1" width="300" height="133" class="alignleft size-medium wp-image-270" /></a><br />
<a href="http://www.lilianeville.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-04-at-3.25.17-PM.png"><img src="http://www.lilianeville.com/blog/wp-content/uploads/2010/06/Screen-shot-2010-06-04-at-3.25.17-PM-300x142.png" alt="" title="wp3rc1_shot2" width="300" height="142" /></a></p>
<p>Nothing. Nada. None of it. You can specify a title, but really&#8230;. who gives a shit. I don&#8217;t. I want to specify a friggin&#8217; class so I can style my external menu nav as distinct from the internal nav. </p>
<p>Disappointed, to say the least.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lilianeville.com/blog/2010/06/disappointment-in-wp-3-0-rc1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mullenweg WordCamp 2010 speech</title>
		<link>http://www.lilianeville.com/blog/2010/05/mullenweg-wordcamp-2010-speech/</link>
		<comments>http://www.lilianeville.com/blog/2010/05/mullenweg-wordcamp-2010-speech/#comments</comments>
		<pubDate>Wed, 19 May 2010 13:02:28 +0000</pubDate>
		<dc:creator>lilianev</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.lilianeville.com/blog/?p=236</guid>
		<description><![CDATA[It took me three days to get through the whole video (it&#8217;s a little over an hour), but it was definitely worth it. It took three days because I attempt to multi-task while listening; but it was so interesting I kept having to stop the video and wait until I could focus on just the [...]]]></description>
			<content:encoded><![CDATA[<p>It took me three days to get through the whole video (it&#8217;s a little over an hour), but it was definitely worth it. It took three days because I attempt to multi-task while listening; but it was so interesting I kept having to stop the video and wait until I could focus on just the speech.</p>
<p>I took a few notes during the vid, and these are some highlights of what I wrote down:<br />
&#8216;Great WP websites link out to social media that&#8217;s ugly and nasty and unbranded&#8217;<br />
&#8216;A work of interactive art&#8217;<br />
&#8216;Think glocal. Act lobal&#8217;<br />
&#8216;Custom post types -> event calendar&#8217;</p>
<p>Not sure about that last one, but I remember being very excited when I wrote it down.</p>
<p>Check it out for yourself:</p>
<p><embed src="http://v.wordpress.com/wp-content/plugins/video/flvplayer.swf?ver=1.21" type="application/x-shockwave-flash" width="400" height="224" seamlesstabbing="true" allowfullscreen="true" allowscriptaccess="always" overstretch="true" flashvars="guid=xj8pDCM4&amp;width=400&amp;height=224&amp;locksize=no&amp;dynamicseek=false&amp;qc_publisherId=p-18-mFEk4J448M" title="Matt Mullenweg: State of the Word 2010"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lilianeville.com/blog/2010/05/mullenweg-wordcamp-2010-speech/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>White House implements Drupal website</title>
		<link>http://www.lilianeville.com/blog/2009/10/white-house-implements-drupal-website/</link>
		<comments>http://www.lilianeville.com/blog/2009/10/white-house-implements-drupal-website/#comments</comments>
		<pubDate>Fri, 30 Oct 2009 14:57:44 +0000</pubDate>
		<dc:creator>lilianev</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[drupal]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.lilianeville.com/blog/?p=102</guid>
		<description><![CDATA[This week WhiteHouse.gov moved to a Drupal Content Management System. An article in NYT states that it was a &#8220;serious seal of approval for open-source software&#8221; and that that&#8217;s no lie. While Drupal was already a popular CMS, there&#8217;s nothing like an endorsement via the White House&#8217;s use of the CMS. To be frank, I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>This week <a href="http://www.WhiteHouse.gov">WhiteHouse.gov</a> moved to a Drupal Content Management System. An <a href="http://bits.blogs.nytimes.com/2009/10/30/drupal-moves-into-the-white-house/?ref=technology">article in NYT</a> states that it was a &#8220;serious seal of approval for open-source software&#8221; and that that&#8217;s no lie. While Drupal was already a popular CMS, there&#8217;s nothing like an endorsement via the White House&#8217;s use of the CMS.</p>
<p>To be frank, I&#8217;m quite surprised about the move to Drupal. From my personal experience, not a lot of people are satisfied with the functionality of Drupal. A while back I was interviewing with an academic department at University of Wisconsin &#8211; Madison and one of their main requests for the job applicants was to undo the Drupal website that was driving faculty and staff crazy. Their Drupal website was not giving them the web presence &amp; back-end functionality that they needed, and no one knew how to customize properly so functionality was breaking down all over the place.</p>
<p>I&#8217;ve installed Drupal on a testing website of mine and it&#8217;s easy enough to navigate, but true customization was not at my fingertips. The <a href="http://bits.blogs.nytimes.com/2009/10/30/drupal-moves-into-the-white-house/?ref=technology">same article mentioned before</a> also noted that  she could sett up a &#8220;basic Web site easily enough, [but] doing any kind of real customization work proved a bit tricky.&#8221; While WordPress is blogging software, in my opinion, many times it&#8217;s easier to customize WordPress code to run a website than actually deal with a CMS. I know the benefits of CMS, but I truly haven&#8217;t found one that I adore or would actually recommend to someone. I&#8217;m more inclined to recommend WordPress plus tweaking to run a site than actually recommend Drupal, Joomla, or RedDot. I&#8217;ve seen a new CMS called Mambo and I&#8217;ve yet to try it out, but we&#8217;ll see how that one compares to the rest.</p>
<p>Besides all the Drupal bashing that I&#8217;ve just done, the Drupal White House website does look very, very nice.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lilianeville.com/blog/2009/10/white-house-implements-drupal-website/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

