<?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>Press My biz</title>
	<atom:link href="http://pressmy.biz/feed" rel="self" type="application/rss+xml" />
	<link>http://pressmy.biz</link>
	<description>Custom Wordpress Designs and Premade Themes for Business</description>
	<lastBuildDate>Sat, 24 Apr 2010 16:07:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Display content only to logged in users</title>
		<link>http://pressmy.biz/logged-in-content</link>
		<comments>http://pressmy.biz/logged-in-content#comments</comments>
		<pubDate>Sat, 24 Apr 2010 14:43:06 +0000</pubDate>
		<dc:creator>Terran</dc:creator>
				<category><![CDATA[Thesis Theme]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://pressmy.biz/?p=308</guid>
		<description><![CDATA[This is something I just did for one of my sites that I think is really neat, so hopefully you will find it useful. Like almost all my customizations, this one is done in the Thesis Framework. With the exception of the hook to place the content at the bottom of the post or page [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>This is something I just did for one of my sites that I think is really neat, so hopefully you will find it useful. </p>
<p>Like almost all my customizations, this one is done in the <a href="http://pressmy.biz/get/thesis">Thesis Framework</a>. With the exception of the hook to place the content at the bottom of the post or page this should work in pretty much the same way for any wordpress theme. It&#8217;ll just be a bit harder.</p>
<p>Basically it adds content to the bottom of a post or page based on your input in a custom field, but only for logged in users. It also displays a message telling non-logged-in users that they&#8217;re missing out on something.</p>
<p>Here&#8217;s the code which goes in custom_functions.php (usually just functions.php in other themes):</p>
<div class="code"><code>function add_loggedin_content () {<br />
global $post;<br />
$loggedinmessage=get_post_meta($post->ID, 'logged_in_content', TRUE);<br />
	if ($loggedinmessage) {<br />
		if ( is_user_logged_in() ) {<br />
			echo do_shortcode( $loggedinmessage );<br />
		}<br />
		else {<br />
			?></p>
<p>This page contains content that only logged in users can view. If you are registered <a href="<?php bloginfo('wpurl');?>/wp-login.php">click here</a> to get access. To register <a href="<?php bloginfo('wpurl');?>/wp-register.php">click here</a>.</p>
<p>			<?php<br />
		}<br />
	}<br />
}</code></div>
<p>My application is to display a contact form only to logged in users. Since I'm using <a href="http://wordpress.org/extend/plugins/contact-form-7/">contact form 7</a>, I wanted to be able to insert a shortcode in the custom field. If you wanted to insert regular content just change:</p>
<div class="code"><code>echo do_shortcode( $loggedinmessage );</code></div>
<p>to: </p>
<div class="code"><code>echo $loggedinmessage;</code></div>
<p>To use this function just go to the post/page, scroll down to "Custom Fields" and click on "Enter New." In the "name" field enter: </p>
<div class="code"><code>logged_in_content</code></div>
<p>Then enter whatever shortcode or content you want in the "Value" field.</p>
<p>So what uses can you think of to put this code to use for?</p>
]]></content:encoded>
			<wfw:commentRss>http://pressmy.biz/logged-in-content/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating a Separate Newsletter Page</title>
		<link>http://pressmy.biz/creating-separate-newsletter-page</link>
		<comments>http://pressmy.biz/creating-separate-newsletter-page#comments</comments>
		<pubDate>Fri, 05 Mar 2010 03:54:56 +0000</pubDate>
		<dc:creator>Terran</dc:creator>
				<category><![CDATA[Thesis Theme]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://pressmy.biz/?p=187</guid>
		<description><![CDATA[Ever wanted to create a separate &#8220;newsletter&#8221; page for your site that&#8217;s segregated from your main blog? This tutorial will walk you through doing just that for your wordpress site running the Thesis Framework. It should be similar in most other themes too. This post comes to you courtesy of Angelique at AfMarCom.com who I [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Ever wanted to create a  separate &#8220;newsletter&#8221; page for your site that&#8217;s segregated from your main blog? This tutorial will walk you through doing just that for your wordpress site running the <a href="http://pressmy.biz/get/thesis ">Thesis Framework</a>. It should be similar in most other themes too. </p>
<p>This post comes to you courtesy of Angelique at <a href="http://afmarcom.com">AfMarCom.com</a> who I worked with to figure this out. </p>
<h3>Step 1: Create Your First Newsletter</h3>
<p>This part will be easy for anyone who&#8217;s used wordpress for any length of time. Just create a post as you normally would by clicking the posts link along the left hand side of your admin panel and then select &#8220;Add New.&#8221; </p>
<p>Maybe you&#8217;ll right about some time sensitive topic you really want people to read now. Maybe you want to offer excerpts from your weeks posts. Or as Angelique chose to do maybe you want to pair highlighted posts from the week with special newsletter only content. </p>
<p>So you&#8217;ve written your newsletter, and you&#8217;re ready to push that pretty blue &#8220;Publish&#8221; button. Don&#8217;t do it just yet. Wait for the next step.</p>
<h3>Step 2: Create a Newsletter Category</h3>
<p>There are other ways to do this (such as in the categories control panel), but you may as well do it while you&#8217;re creating your post. Just look for the &#8220;Categories&#8221; box along the right site of &#8220;Add New Post&#8221; page. Click &#8220;+ Add New Category,&#8221; name your category something like &#8220;Newsletter,&#8221; and click &#8220;Add.&#8221; Make sure the category is checked before moving on.</p>
<p>Ok, now you can go ahead and publish your post.</p>
<h3>Step 3: Exclude your Newsletter from your blog page</h3>
<p>Here comes the &#8220;tricky&#8221; part. First we need to find out what the category ID number of your new category is. Click the posts link along the left side as you did when creating a post, but this time select the &#8220;Categories&#8221; link.  </p>
<p>Now find the Newsletter category you just created and hover your most over the link. In your browser&#8217;s status bar (usually in the lower left) you&#8217;ll see the URL this link will take you to. It&#8217;ll look something like this http://pressmy.biz/wp-admin/categories.php?action=edit&#038;cat_ID=5. That number at the end is your category ID. Write it down for the next step. </p>
<p>Next we&#8217;re going to add some code to your custom_functions.php file. If you&#8217;re using a theme other than <a href="http://pressmy.biz/get/thesis ">Thesis</a> you&#8217;ll probably just add this to your themes function.php file. You&#8217;ll find custom_functions file in the custom folder of your main thesis folder. Open it in your <a href="http://notepad-plus.sourceforge.net/uk/download.php">favorite text editor</a> and add this code anywhere after the comments section:</p>
<div class="code"><code>function exclude_category($query) {<br />
	if ( $query->is_feed || $query->is_home ) {<br />
		$query->set('cat', '-1');<br />
	}<br />
return $query;<br />
}<br />
add_filter('pre_get_posts', 'exclude_category');</code></div>
<p>Before you go accusing me of being a php genius <a href="http://zeo.unic.net.my/exclude-category-in-wordpress/">here&#8217;s where I found that code</a></p>
<p>You will need to make one little change to that code. See the part that says $query->set(&#8216;cat&#8217;, &#8216;-1&#8242;);? Just change that number 1 to the category ID number you wrote down earlier. </p>
<p>Finish off this step by uploading custom_functions.php to your server using your <a href="http://filezilla-project.org/">favorite FTP program</a>. Check your blog page and make sure the post you just created <em>isn&#8217;t</em> showing up. </p>
<h3>Step 4: &#8220;Create&#8221; your Newsletter Page</h3>
<p>You may have noticed that &#8220;create&#8221; is in quotes up there. This is because we&#8217;re just going to use the archive system built into WordPress. First lets make sure your newsletter post is showing up on the category archive page. </p>
<p>The URL should be something like http://pressmy.biz/category/newsletter where &#8220;newsletter&#8221; is the name you gave your new category. Unless you&#8217;ve already changed the archive display options you&#8217;ll probably just see the title of each post in the category. If you like this then you can skip the rest of this step. </p>
<p>Customizing the look of your archives pages is one place that Thesis  really shines. Just visit the &#8220;Thesis Options&#8221; panel and find &#8220;Archives&#8221; under &#8220;Display Options&#8221; along the right had column. You&#8217;ll find four options that should be pretty self-explanatory, but here&#8217;s a brief explanation:</p>
<ul>
<li>Titles only: This is probably currently select. It will display only your post title as a link to the post</li>
<li>Everything’s a teaser!: Your archives pages will appear with a double column of post excerpt with a title, published date and read more link.</li>
<li>Same as your home page: Your archives will look just like your home page. Nothing more to be said here.</li>
<li>Post excerpts: This will look much like &#8220;Everything&#8217;s a teaser!&#8221; except each excerpt will take up the whole column </li>
</ul>
<p>Just pick one and click the save button. Play around until you find the option you like.  </p>
<h3> Step 5: Add your Newsletter Page to Your Navigation Menu</h3>
<p>Here&#8217;s another area where thesis is a step above the rest, at least until wordpress 3.0 comes out with its <a href="http://wordpress.org/development/2010/02/menus-merge-patch-sprint/">killer new nav menu</a>.</p>
<p>Visit your &#8220;Thesis Options&#8221; page again and this time find &#8220;Include these category pages in nav menu&#8221; under &#8220;Navigation Menu.&#8221; Select  your newsletter category from the list and click save. If you would like to include more than one category in the navigation menu just hold down the &#8220;ctrl&#8221; button on your keyboard while making your selections. </p>
<h3>Step 6 (optional): Remove &#8220;From the category archives&#8221;</h3>
<p>If you&#8217;re like me and you think the &#8220;From the category archives&#8221; text at the top of your Newsletter page shouldn&#8217;t be there, with a quick addition to your custom.css file we can fix that. Open Custom.css found in the custom folder of the main thesis folder and add the following code:</p>
<div class="code"><code>.cat_newsletter #archive_info p {<br />
	display:none;<br />
}</code></div>
<p>Be sure to change &#8220;newsletter&#8221; in .cat_newsletter to the name of your category. If you would prefer to remove this text from all your archive pages simply remove the .cat_newsletter class from the above code</p>
<h3>You&#8217;re Done!</h3>
<p>There you have it. Now you have a newsletter page for your WordPress site where you can post special content, time sensitive posts, or summaries your blogging activity for the week or anything else. </p>
<p>What else can you think of to use a &#8220;newsletter&#8221; page for? </p>
]]></content:encoded>
			<wfw:commentRss>http://pressmy.biz/creating-separate-newsletter-page/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Why WordPress is Perfect for your Business</title>
		<link>http://pressmy.biz/why-wordpress-is-perfect-for-your-business</link>
		<comments>http://pressmy.biz/why-wordpress-is-perfect-for-your-business#comments</comments>
		<pubDate>Sun, 21 Feb 2010 20:06:57 +0000</pubDate>
		<dc:creator>Terran</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://pressmy.biz/?p=58</guid>
		<description><![CDATA[If you’ve heard of wordpress it was probably as the platform used by bloggers. But you own a business. You don’t want someone to visit your website and find a long list of posts. You want them to find information about your business. So why would you use wordpress? WordPress can Look Just Like a [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>If you’ve heard of wordpress it was probably as the platform used by bloggers. But you own a business. You don’t want someone to visit your website and find a long list of posts. You want them to find information about your business. So why would you use wordpress?</p>
<h4>WordPress can Look Just Like a Regular Website</h4>
<p>First, wordpress can look just like a standard website. With a few clicks of the mouse (something I do for free with any of my wordpress installation or design services) your homepage can be a standard informational page welcoming your visitors to your website, telling them about your business, and directing them to other static pages for more information. </p>
<p>As you can probably guess this website is built on wordpress. Go ahead and click on the home page link in the navigation. Now check out the about page, and the contact page. Can you tell this website isn&#8217;t built like any &#8220;normal&#8221; website?</p>
<h4>Adding Content is as Easy as Email</h4>
<p>Now we know that wordpress can be configured to be indistinguishable from a standard website, but why should you care? What makes it better? </p>
<p>The biggest advantage of wordpress for a small or medium sized business is that it is extremely easy to add content. Most modern bloggers aren&#8217;t very technical people. They&#8217;re able to constantly add new content to their sites because wordpress makes it easy. </p>
<p>Unlike standard websites, with a wordpress website you don&#8217;t need to pay your designer every time you want to make a change or add a new page. Just log in to your wordpress site and edit or add a page. If you can handle sending an email you can update your wordpress website. </p>
<h4>You Can Easily Add a Blog to your Website</h4>
<p>This one should be pretty obvious, but wordpress was originally developed for bloggers, so adding a blog is easy. While you&#8217;re setting up your site to have a static home page, just make a &#8220;blog&#8221; page and tell wordpress to add all your new posts to that page. Presto-chango, you have a blog on your website. </p>
<p>You don&#8217;t need to go through the hassle and expense of setting up a static website only to decide a few months later that your business could really benefit from a company blog. If you start your static website with wordpress, you can skip hiring another designer to match the design of your static site with a wordpress blog. You&#8217;ll be able to just add it when you&#8217;re ready.   </p>
<p>Even though I just told about what a great thing it is that you can easily configure wordpress to have a static home page, It&#8217;s worth noting here that some businesses are actually better off with a blog on their home page. This is especially true of businesses based on the expertise of the proprietor. If you&#8217;re willing to commit to regularly sharing your expertise on your site this can be a great competitive advantage. How many local landscapers do you know handing out free advice on how to grow roses online? Who do you think the gardener is going to call when they need a new walkway? </p>
<h4>You can Develop an Online Presence in Stages</h4>
<p>Another great thing about wordpress is that it separates content from style. This means that If you start now with a <a href="http://pressmy.biz/wordpress-install">$75 website</a> and a <a href="http://wordpress.org/extend/themes/" target="_blank">free</a> or <a href="http://pressmy.biz/thesis-theme">low cost</a> theme just to get your business online you can always update your look with a <a href="http://pressmy.biz/custom-design">custom design</a> once you&#8217;re established.</p>
<p>Whatever stage your small or medium sized business is at, wordpress and <a href="http://pressmy.biz/">PressMy.biz</a> can offer a solution to further develop your online presence.  </p>
]]></content:encoded>
			<wfw:commentRss>http://pressmy.biz/why-wordpress-is-perfect-for-your-business/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
