<?xml version="1.0"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Drawar Thread: Wordpress tips and tricks</title>
<link>http://drawar.com/notes/</link>
<description>Drawar Thread: Wordpress tips and tricks</description>
<language>en</language>
<pubDate>Wed, 20 Aug 2008 14:12:49 +0000</pubDate>

<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-62743</link>
<pubDate>Wed, 25 Jul 2007 15:01:15</pubDate>
<dc:creator>BinaryMoon</dc:creator>
<guid isPermaLink="false">62743</guid>
<description>&lt;p&gt;I've now written about the &lt;a href=&quot;http://www.binarymoon.co.uk/2007/07/wordpress-tips-and-tricks-custom-login-page/&quot;&gt;custom login pages&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I also wrote a &lt;a href=&quot;http://www.binarymoon.co.uk/projects/bm-custom-login/&quot;&gt;plugin and template&lt;/a&gt; for creating the images and have set up a &lt;a&gt;flickr group&lt;/a&gt; for people to submit their screens too.
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-52523</link>
<pubDate>Mon, 09 Jul 2007 15:53:15</pubDate>
<dc:creator>davidair</dc:creator>
<guid isPermaLink="false">52523</guid>
<description>&lt;p&gt;Nice note, Ben.&lt;/p&gt;
&lt;p&gt;It's the little things that make all the difference.&lt;/p&gt;
&lt;p&gt;One tiny addition I use is to format the 'comments' number. For instance, if there's one comment on an article of mine it'll say at the top:&lt;/p&gt;
&lt;p&gt;One lonely but appreciated comment&lt;/p&gt;
&lt;p&gt;If there's more than one it'll say:&lt;/p&gt;
&lt;p&gt;# very welcomed comments&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.davidairey.com/404&quot;&gt;Here's my custom 404 page&lt;/a&gt;.
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-52316</link>
<pubDate>Sun, 08 Jul 2007 06:31:17</pubDate>
<dc:creator>scrapeyard</dc:creator>
<guid isPermaLink="false">52316</guid>
<description>&lt;p&gt;A custom login screen is definitely a good idea when you have multi user blog. &lt;/p&gt;
&lt;p&gt;BTW I am also writing a series of post for custom themes. Its good sharing ideas. You definitely have good contents.&lt;/p&gt;
&lt;p&gt;One of the idea is a better navigation for your word press blog that is not hard coded.&lt;/p&gt;
&lt;p&gt;Have a look at &lt;a href='http://contents-magic.com/29/wordpress/including-a-better-navigation-for-wordpress-pages/'&gt;  Navigation in Wordpress&lt;/a&gt;.
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51883</link>
<pubDate>Fri, 06 Jul 2007 02:23:13</pubDate>
<dc:creator>BinaryMoon</dc:creator>
<guid isPermaLink="false">51883</guid>
<description>&lt;p&gt;Thanks for all the comments people. I think I will definitely use the custom login one (with attribution obviously :) ) and the author page is now on my list.&lt;/p&gt;
&lt;p&gt;If anyone else has any ideas...
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51672</link>
<pubDate>Wed, 04 Jul 2007 22:25:38</pubDate>
<dc:creator>Devin</dc:creator>
<guid isPermaLink="false">51672</guid>
<description>&lt;p&gt;The custom login screen is awesome.. thanks for pointing this out, everyone (&lt;a href=&quot;http://www.employeeevolution.com/wp-login.php&quot;&gt;here's one I just made&lt;/a&gt;).
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51438</link>
<pubDate>Tue, 03 Jul 2007 23:19:15</pubDate>
<dc:creator>nubeen</dc:creator>
<guid isPermaLink="false">51438</guid>
<description>&lt;p&gt;I have one that's more of a hack for the way the developers decided return output from a function. Most template functions &lt;em&gt;echo&lt;/em&gt; the output instead of &lt;em&gt;returning&lt;/em&gt; it. This was done for the less php savvy so they don't have to &lt;code&gt;&amp;lt;?php echo the_content(); ?&amp;gt;&lt;/code&gt; every time. In my opinion it's a stupid move since it creates an assortment of issues for those who do know how to code and want to change the output of a function (eg: &lt;code&gt;&amp;lt;?php echo myOwnFunction(the_author_url()) ?&amp;gt;&lt;/code&gt; would reformat the way a comment author's email looks. By default, with echoing, you can't pass the function through another to sanitize or change the output.&lt;/p&gt;
&lt;p&gt;There are two ways to get around this, one of them is simple and requires not editing of the core functons, and that's a separate function of your own that uses output buffering to grab the return of the function. It's better if you're going to use it sparingly (out of the loop). It creates a little more overhead, but it gets the job done.&lt;/p&gt;
&lt;p&gt;In my case, with the theme I am working on, I want to change the format of comment author url's. So I decided instead of output buffering every URL that comes through, to just edit the comment_author_url() functions way of returning output. Yes, I'll have to change it should I decide to upgrade or reinstall WordPress, but it's creates less overhead since I don't have the buffer every url.&lt;/p&gt;
&lt;p&gt;Don't know if this helps anyone at all or if it gives you another tip/trick/hack to write about, but I'd thought I shed light on it since it may be a little more common for the programmers that want to do something similar to what I am doing with my new theme.
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51394</link>
<pubDate>Tue, 03 Jul 2007 21:33:39</pubDate>
<dc:creator>RightOn</dc:creator>
<guid isPermaLink="false">51394</guid>
<description>&lt;p&gt;I agree, the WP codex needs a MAJOR overhaul!
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51384</link>
<pubDate>Tue, 03 Jul 2007 21:06:37</pubDate>
<dc:creator>JeffJ</dc:creator>
<guid isPermaLink="false">51384</guid>
<description>&lt;p&gt;I'm working on a multi-author blog and I'm hoping to add some dynamically generated pages (included in the wordpress loop). It would be nice if you could go over how to make an author.php page and maybe how to have archives separated by author and some other selectors if you have time.&lt;/p&gt;
&lt;p&gt;I think a lot of this stuff is touched on in the WP Codex, but it's a pretty big mess.&lt;/p&gt;
&lt;p&gt;Good stuff BinaryMoon.
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51368</link>
<pubDate>Tue, 03 Jul 2007 19:46:18</pubDate>
<dc:creator>RightOn</dc:creator>
<guid isPermaLink="false">51368</guid>
<description>&lt;p&gt;Ryan the form Nazi will find you, it's IMPOSSIBLE to hide!
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51366</link>
<pubDate>Tue, 03 Jul 2007 19:25:07</pubDate>
<dc:creator>carmodyarc</dc:creator>
<guid isPermaLink="false">51366</guid>
<description>&lt;p&gt;*Looks around to see if anyone noticed his unstyled forms fonts*
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51364</link>
<pubDate>Tue, 03 Jul 2007 18:10:49</pubDate>
<dc:creator>RightOn</dc:creator>
<guid isPermaLink="false">51364</guid>
<description>&lt;p&gt;&lt;img src=&quot;http://www.jamesmeister.com/postimg/osulogin.png&quot; /&gt;
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51292</link>
<pubDate>Tue, 03 Jul 2007 02:03:40</pubDate>
<dc:creator>ryanarrowsmith</dc:creator>
<guid isPermaLink="false">51292</guid>
<description>&lt;p&gt;Make sure to tell people to style their forms!  I hate seeing a beautiful site, then seeing Courier New in the text area because they forgot to style it.
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51291</link>
<pubDate>Tue, 03 Jul 2007 01:53:24</pubDate>
<dc:creator>BinaryMoon</dc:creator>
<guid isPermaLink="false">51291</guid>
<description>&lt;p&gt;I must admit I've never considered doing that. The fact I only work for myself (and so don't care what the login screen looks like) probably has something to do with it. It's interesting to see though so thanks for pointing it out.
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51286</link>
<pubDate>Tue, 03 Jul 2007 01:24:08</pubDate>
<dc:creator>RightOn</dc:creator>
<guid isPermaLink="false">51286</guid>
<description>&lt;p&gt;I did a custom login screen for a job I did about a month back for Oklahoma State University.&lt;/p&gt;
&lt;p&gt;It's just one of those &quot;finishing touches&quot; that big clients like to see.
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51283</link>
<pubDate>Tue, 03 Jul 2007 01:17:07</pubDate>
<dc:creator>ayushsaran</dc:creator>
<guid isPermaLink="false">51283</guid>
<description>&lt;p&gt;I always change the default login screen&lt;/p&gt;
&lt;p&gt;like &lt;a href=&quot;http://img.photobucket.com/albums/v493/ayushsaran/blog/wp_login_new.gif&quot;&gt;http://img.photobucket.com/albums/v493/ayushsaran/blog/wp_login_new.gif&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src=&quot;http://img.photobucket.com/albums/v493/ayushsaran/blog/wp_login_new.gif&quot; /&gt;&lt;/p&gt;
&lt;p&gt;ive blogged about this at &lt;a href=&quot;http://www.ayushsaran.com/blog/resources/customize-wordpress-login-screen/&quot;&gt;http://www.ayushsaran.com/blog/resources/customize-wordpress-login-screen/&lt;/a&gt;
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51273</link>
<pubDate>Tue, 03 Jul 2007 00:49:16</pubDate>
<dc:creator>BinaryMoon</dc:creator>
<guid isPermaLink="false">51273</guid>
<description>&lt;p&gt;Gnorb - that's good to hear. I hope you find something worthwhile in there :)&lt;/p&gt;
&lt;p&gt;Sean - I'm not entirely sure what you mean so I'd be very interested to read that. Thanks
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51270</link>
<pubDate>Tue, 03 Jul 2007 00:43:45</pubDate>
<dc:creator>seanrox</dc:creator>
<guid isPermaLink="false">51270</guid>
<description>&lt;p&gt;Something I find a lot of WordPress developers forgetting to do is secure form data fields, especially the search form box.  &lt;/p&gt;
&lt;p&gt;I have a small tutorial on that, however it can be expanded.  I'll send it over to you.
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51258</link>
<pubDate>Mon, 02 Jul 2007 23:51:32</pubDate>
<dc:creator>Gnorb</dc:creator>
<guid isPermaLink="false">51258</guid>
<description>&lt;p&gt;Actually, I'm in the process now of making a custom theme, so your article set couldn't come at a better time, especially the 404 page, which I'm doing now.
&lt;/p&gt;</description>
</item>
<item>
<title>Wordpress tips and tricks</title>
<link>http://drawar.com/design/notes/4908/p/1/#response-51254</link>
<pubDate>Mon, 02 Jul 2007 23:41:02</pubDate>
<dc:creator>BinaryMoon</dc:creator>
<guid isPermaLink="false">51254</guid>
<description>&lt;p&gt;I am in the process of writing a series of posts about Wordpress and things you can do with it. You can see the most recent, &lt;a href=&quot;http://www.binarymoon.co.uk/2007/06/wordpress-tips-and-tricks-custom-templates/&quot;&gt;custom templates&lt;/a&gt;, here (it has links to the rest of the series). I also have a post about custom 404 pages coming up at the end of this week.&lt;/p&gt;
&lt;p&gt;I'm trying to document the small things that people don't always think of when they develop wordpress sites/ themes, so I was wondering what other peoples favorite Wordpress Tips and Tricks are and if anybody has anything they want to be able to do that they can't work out (can't promise I will know... but maybe I can help)..?
&lt;/p&gt;</description>
</item>

</channel>
</rss>

