<?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>Juno Web Design &#187; Aaron Keenan</title>
	<atom:link href="http://www.junowebdesign.com/author/aaron/feed" rel="self" type="application/rss+xml" />
	<link>http://www.junowebdesign.com</link>
	<description>Web Design Company in Nottingham</description>
	<lastBuildDate>Wed, 08 Feb 2012 10:36:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Using Short Codes to Easily Format WordPress Page Content</title>
		<link>http://www.junowebdesign.com/wordpress-web-design/using-short-codes-to-easily-format-wordpress-page-content</link>
		<comments>http://www.junowebdesign.com/wordpress-web-design/using-short-codes-to-easily-format-wordpress-page-content#comments</comments>
		<pubDate>Fri, 07 May 2010 20:21:13 +0000</pubDate>
		<dc:creator>Aaron Keenan</dc:creator>
				<category><![CDATA[wordpress web design]]></category>

		<guid isPermaLink="false">http://www.junowebdesign.com/?p=3229</guid>
		<description><![CDATA[Custom short codes can be extremely useful towards setting up a conveniently manageable WordPress theme design. Since WordPress 2.5, there has been in-built support for creating custom short codes using the add_shortcode() function. A Basic add_shortcode() Example In the example below I have used the short code [go] (square brackets are always included as part [...]]]></description>
			<content:encoded><![CDATA[<p>Custom short codes can be extremely useful towards setting up a conveniently manageable <a href="http://www.junowebdesign.com/wordpress-web-design">WordPress theme design</a>. Since WordPress 2.5, there has been in-built support for creating custom short codes using the <strong>add_shortcode()</strong> function.<br />
<h3>A Basic add_shortcode() Example</h3>
<p>In the example below I have used the short code <em>[go]</em> (square brackets are always included as part of a WordPress shortcode) to enter a linked button that could, for example, be used as a link on multiple pages throughout the site.</p>
<p>[realgo]</p>
<p>The advantages in this case are in:
<ul>
<li> speed</li>
<li> ease-of-use</li>
<li> consistency</li>
</ul>
<p>You can be assured that the button &amp; link will be consistent whenever the short code is used and the process will be altogether more efficient (provided you remember the short code!).</p>
<p>To set up this short code the following lines were added to functions.php in the theme folder:<br />
<blockquote>function add_go_button() {<br />
return &#8216;&lt;a href=&#8221;http://www.junowebdesign.com/contact&#8221;&gt;&lt;img src=&#8221;http://www.junowebdesign.com/wp-content/themes/juno/images/go-button.png&#8221; alt=&#8221;go&#8221; /&gt;&lt;/a&gt;&#8217;;<br />
}<br />
add_shortcode(&#8216;go&#8217;, &#8216;add_go_button&#8217;);</p></blockquote>
<p>The parameters used by add_shortcode() are firstly the short code (here &#8216;go&#8217; corresponding to &#8216;[go]&#8216; when entering post/page content) and secondly the function that you want to be called when the short code is processed.<br />
<h3>Using add_shortcode() To Format Content Easily</h3>
<p>The next example shows how short codes can be wrapped around content, in this case to format a section of text. The content in the admin section is input as:</p>
<p><em>[box]This content is wrapped in a fancy box.[/box]</em></p>
<p>This content is then processed to appear as:</p>
<p>[realbox]This content is wrapped in a fancy box.[/realbox]</p>
<p>A key advantage here is that the theme can be set up to allow an editor who is unfamiliar with <a href="http://frontenddevelopment.com/">XHTML &amp; CSS</a> enhanced options for formatting their content &#8211; and this is all possible while remaining in &#8216;Visual&#8217; (rather than &#8216;HTML&#8217;) mode in the admin.</p>
<p>The code added to functions.php to enable this short code is:<br />
<blockquote>function fancy_box( $atts, $content = null ) {<br />
return &#8216;&lt;div class=&#8221;fancy&#8221;&gt;&#8217; . $content . &#8216;&lt;/div&gt;&#8217;;<br />
}<br />
add_shortcode(&#8216;box&#8217;, &#8216;fancy_box&#8217;);</p></blockquote>
<p>This post only begins to look at the options available using the <a href="http://codex.wordpress.org/Shortcode_API">WordPress Shortcode API</a>. This functionality can be extended with <a href="http://codex.wordpress.org/Shortcode_API#Attributes">attributes</a> and nested short codes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.junowebdesign.com/wordpress-web-design/using-short-codes-to-easily-format-wordpress-page-content/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>add_theme_support() &#8211; a Function to Change the Future of WordPress Theme Development</title>
		<link>http://www.junowebdesign.com/wordpress-web-design/add_theme_support</link>
		<comments>http://www.junowebdesign.com/wordpress-web-design/add_theme_support#comments</comments>
		<pubDate>Wed, 05 May 2010 07:59:27 +0000</pubDate>
		<dc:creator>Aaron Keenan</dc:creator>
				<category><![CDATA[wordpress web design]]></category>

		<guid isPermaLink="false">http://www.junowebdesign.com/?p=3198</guid>
		<description><![CDATA[One relatively new function that could be making a big difference to the future of WordPress theme development is add_theme_support(). The function was introduced late last year with the release of WordPress 2.9. The major current use for add_theme_support() is for conveniently setting thumbnail images for posts and pages. When WordPress 3.0 is released (scheduled [...]]]></description>
			<content:encoded><![CDATA[<p>One relatively new function that could be making a big difference to the future of WordPress theme development is add_theme_support(). The function was introduced late last year with the release of WordPress 2.9. The major current use for add_theme_support() is for conveniently setting thumbnail images for posts and pages. When WordPress 3.0 is released (scheduled for this month) add_theme_support() is also set to be very useful in managing site navigation menus.  The scope of these applications and the generality that is implied by the name of the function suggest that add_theme_support() could become a very prominent part of theme design over the next few releases of WordPress.<br />
<h3>Using add_theme_support() to Manage Post &amp; Page Thumbnail Images</h3>
<h6>Available with WordPress 2.9</h6>
<p>To take advantage of this functionality, all that is required is one line in functions.php of your theme folder:<br />
<blockquote>add_theme_support( &#8216;post-thumbnails&#8217; );</p></blockquote>
<p>Once this line has been added you may notice two differences in the admin section. Firstly, when you are uploading an image, you will now have a link reading &#8216;Use as thumbnail&#8217;. Secondly, there will be a &#8216;Post Thumbnail&#8217; box when you are editing a post or page.</p>
<p><img class="alignnone size-full wp-image-3203" title="use-as-thumbnail" src="http://www.junowebdesign.com/wp-content/uploads/2010/05/use-as-thumbnail.png" alt="use-as-thumbnail" width="212" height="149" /><br />
<img class="alignnone size-full wp-image-3204" title="post-thumbnail" src="http://www.junowebdesign.com/wp-content/uploads/2010/05/post-thumbnail.png" alt="post-thumbnail" width="297" height="99" /></p>
<p>add_theme_support( &#8216;post-thumbnails&#8217; ) is especially useful in combination with a function that sets the thumbnail size:<br />
<blockquote>set_post_thumbnail_size( 150, 90 );</p></blockquote>
<p>which in this case would set the thumbnail size to a width of 150 and height of 90. Additional sizes can be added if you need to use multiple thumbnail sizes within the theme. This is possible through e.g.<br />
<blockquote>add_image_size( &#8216;mega-thumbnail&#8217;, 600, 800 );</p></blockquote>
<p>You can output these thumbnails on the frontend of your site using the_post_thumbnail() (or e.g. the_post_thumbnail(&#8216;mega-thumbnail&#8217;) when there are multiple sizes enabled) within the WordPress loop.<br />
<h3>Using add_theme_support() to Manage Navigation Menus</h3>
<h6>Available with WordPress 3.0</h6>
<p>To set up support for managing site navigation menus in the admin (in WordPress 3) you will be able to add the following line to the functions.php file in your theme folder:<br />
<blockquote>add_theme_support( &#8216;nav-menus&#8217; );</p></blockquote>
<p>You can then set up a new menu under Appearance &gt; Menus in the WordPress admin and add pages from your site or even from other sites to this menu. There is a convenient drag-and-drop interface for setting the order and hierarchy of the menu items.</p>
<p>The menus you set up here can be added to the front end of your site using the wp_nav_menu() function in your template files.</p>
<p><a href="http://www.junowebdesign.com/wp-content/uploads/2010/05/menu-management.png"><img class="alignnone size-medium wp-image-3205" title="menu-management" src="http://www.junowebdesign.com/wp-content/uploads/2010/05/menu-management-588x338.png" alt="menu-management" width="588" height="338" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.junowebdesign.com/wordpress-web-design/add_theme_support/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding Post and Category IDs in WordPress</title>
		<link>http://www.junowebdesign.com/wordpress-web-design/finding-post-and-category-ids-in-wordpress</link>
		<comments>http://www.junowebdesign.com/wordpress-web-design/finding-post-and-category-ids-in-wordpress#comments</comments>
		<pubDate>Thu, 15 Apr 2010 08:47:16 +0000</pubDate>
		<dc:creator>Aaron Keenan</dc:creator>
				<category><![CDATA[wordpress web design]]></category>

		<guid isPermaLink="false">http://www.junowebdesign.com/?p=3134</guid>
		<description><![CDATA[To take full advantage of all the WordPress template tags and functions it is often required to use post IDs and category IDs. These values can be found conveniently in the WordPress admin area, without needing to refer to the database. Finding a WordPress Post ID To find the ID of a particular post or [...]]]></description>
			<content:encoded><![CDATA[<p>To take full advantage of all the WordPress <a title="WordPress template tags" rel="nofollow" href="http://codex.wordpress.org/Template_Tags/">template tags</a> and <a title="WordPress functions" rel="nofollow" href="http://codex.wordpress.org/Function_Reference">functions</a> it is often required to use post IDs and category IDs. These values can be found conveniently in the WordPress admin area, without needing to refer to the database.<br />
<h3 id="find-a-post-id">Finding a WordPress Post ID</h3>
<p>To find the ID of a particular post or page in the admin area, you will first need to navigate to Posts &gt; Edit or Pages &gt; Edit as applicable. If you then roll over the link to edit the corresponding page or post, your browser&#8217;s status bar will display the url for editing that page. This url will include &#8216;post=&#8217; and then the ID (e.g. in the image below the post ID is 218).</p>
<p><img class="alignnone size-full wp-image-3135" title="post-ids" src="http://www.junowebdesign.com/wp-content/uploads/2010/04/post-ids.jpg" alt="post-ids" /><br />
<h3 id="find-a-category-id">Finding a WordPress Category ID</h3>
<p>To find the ID of a category in the admin area, you  can will first need to navigate to Posts &gt; Categories. From the list of categories that will then be visible on the right, you can then roll over the Edit link for the category corresponding to the ID that you need. In your browser&#8217;s status bar the url for editing that category will then be visible. This url will include &#8216;cat_ID=&#8217; and then the category ID (e.g. the category ID for the &#8216;Business&#8217; category in the example below is 4).</p>
<p><img class="alignnone size-full wp-image-3136" title="category-ids" src="http://www.junowebdesign.com/wp-content/uploads/2010/04/category-ids.jpg" alt="category-ids" /></p>
<p>Finding a link category ID is a very similar process &#8211; the ids in this case are available via Link &gt; Link Categories.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.junowebdesign.com/wordpress-web-design/finding-post-and-category-ids-in-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding PDF Links to WordPress Posts and Pages</title>
		<link>http://www.junowebdesign.com/wordpress-web-design/pdf-links-in-wordpress-posts-and-pages</link>
		<comments>http://www.junowebdesign.com/wordpress-web-design/pdf-links-in-wordpress-posts-and-pages#comments</comments>
		<pubDate>Mon, 08 Feb 2010 21:01:53 +0000</pubDate>
		<dc:creator>Aaron Keenan</dc:creator>
				<category><![CDATA[wordpress web design]]></category>

		<guid isPermaLink="false">http://www.junowebdesign.com/?p=2760</guid>
		<description><![CDATA[Linking to a pdf can, in many cases, be a very convenient way to add content to your site. We often find that clients will want to add menus, brochures, instructions etc. that may be most effectively viewed, shared or printed in pdf format. Uploading a pdf and adding a link in your site&#8217;s content [...]]]></description>
			<content:encoded><![CDATA[<p>Linking to a pdf can, in many cases, be a very convenient way to add content to your site. We often find that clients will want to add menus, brochures, instructions etc. that may be most effectively viewed, shared or printed in pdf format. Uploading a pdf and adding a link in your site&#8217;s content so that visitors can download this document is all possible through the standard <a href="http://www.junowebdesign.com/wordpress-web-design">WordPress</a> admin options.</p>
<p><a href="http://www.junowebdesign.com/wp-content/uploads/2010/02/upload-insert.png"><img class="alignnone size-full wp-image-2764" title="upload-insert" src="http://www.junowebdesign.com/wp-content/uploads/2010/02/upload-insert.png" alt="upload-insert" width="219" height="31" /></a></p>
<p>When you are editing a page or post in the WordPress admin, there are a group of four options above the main edit window labelled &#8216;Upload/Insert&#8217;. The first is for uploading and managing images, the second for video, the third for audio and the fourth for other media (text files, pdfs etc.). If you select the fourth option (named &#8216;Add Media&#8217;) you will then open a pop up window where you can upload the pdf. Once the file has finished uploading, you will have a choice of options. Selecting &#8216;Insert into Post&#8217; (as you would with an image) will not work here &#8211; it only inserts the document&#8217;s title into the body content of the page or post. To insert a link to the pdf, rather, you can first select the &#8216;File URL&#8217; option. Doing so will cause the file&#8217;s link location to be displayed in the &#8216;Link URL&#8217; field. You can then copy this url to your clipboard and exit the pop up box.</p>
<p><a href="http://www.junowebdesign.com/wp-content/uploads/2010/02/select-document.png"><img class="alignnone size-medium wp-image-2765" title="select-document" src="http://www.junowebdesign.com/wp-content/uploads/2010/02/select-document-588x409.png" alt="select-document" width="588" height="409" /></a></p>
<p><a href="http://www.junowebdesign.com/wp-content/uploads/2010/02/file-url.png"><img class="alignnone size-medium wp-image-2766" title="file-url" src="http://www.junowebdesign.com/wp-content/uploads/2010/02/file-url-588x176.png" alt="file-url" width="588" height="176" /></a></p>
<p>Next enter the text that you will use as the selectable link text in the content of the page or post. Click and drag over this text to select it. Once you have selected the text, the link button will become accessible. You can click this to bring up another pop up box where you are able to paste the url for the pdf that you had previously copied. You will finally need to click &#8216;Insert&#8217; to add the link.</p>
<p><a href="http://www.junowebdesign.com/wp-content/uploads/2010/02/link-text.png"><img class="alignnone size-medium wp-image-2767" title="link-text" src="http://www.junowebdesign.com/wp-content/uploads/2010/02/link-text-588x168.png" alt="link-text" width="588" height="168" /></a></p>
<p><a href="http://www.junowebdesign.com/wp-content/uploads/2010/02/insert-edit-link.png"><img class="alignnone size-full wp-image-2768" title="insert-edit-link" src="http://www.junowebdesign.com/wp-content/uploads/2010/02/insert-edit-link.png" alt="insert-edit-link" width="385" height="256" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.junowebdesign.com/wordpress-web-design/pdf-links-in-wordpress-posts-and-pages/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Macmillan Global Wins TEFL.net Site of the Month Award</title>
		<link>http://www.junowebdesign.com/general-posts/macmillan-global-wins-tefl-net-site-of-the-month-award-for-february</link>
		<comments>http://www.junowebdesign.com/general-posts/macmillan-global-wins-tefl-net-site-of-the-month-award-for-february#comments</comments>
		<pubDate>Fri, 05 Feb 2010 14:17:46 +0000</pubDate>
		<dc:creator>Aaron Keenan</dc:creator>
				<category><![CDATA[general posts]]></category>
		<category><![CDATA[wordpress web design]]></category>

		<guid isPermaLink="false">http://www.junowebdesign.com/?p=2750</guid>
		<description><![CDATA[We&#8217;re very pleased to hear of the success of http://www.macmillanglobal.com in the TEFL.net Site of the Month Award. Global won the award for February due to their valuable teaching resources and all-round contribution to English language training. The site has achieved great success already in terms of visits and newsletter subscribers. We&#8217;re confident that this [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re very pleased to hear of the success of <a href="http://www.macmillanglobal.com" rel="nofollow">http://www.macmillanglobal.com</a> in the TEFL.net Site of the Month Award. Global won the award for February due to their valuable teaching resources and all-round contribution to English language training.</p>
<p>The site has achieved great success already in terms of visits and newsletter subscribers. We&#8217;re confident that this success will continue due to their commitment to high quality content. The site offers audio and pdf downloads, videos and frequent blog posts about their course and broader issues relating to teaching and learning English as a foreign language. The blog section features the writing of well-respected contributors such as David Crystal and Linsay Clandfield. </p>
<p>We are proud of the <a href="http://www.junowebdesign.com">web design</a> and our contribution to presenting their content in an effective, visually-appealing manner and we hope to see the site continue to achieve Macmillan&#8217;s goals in award-winning style.</p>
<p><img src="http://www.junowebdesign.com/wp-content/uploads/2010/02/global-home-TBC-588x780.jpg" alt="global-home-TBC-588x780" title="global-home-TBC-588x780" width="588" height="780" class="alignnone size-full wp-image-2752" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.junowebdesign.com/general-posts/macmillan-global-wins-tefl-net-site-of-the-month-award-for-february/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedding YouTube Videos, Flickr Images and more in WordPress 2.9</title>
		<link>http://www.junowebdesign.com/wordpress-web-design/embedding-youtube-videos-flickr-images-and-more-in-wordpress-2-9</link>
		<comments>http://www.junowebdesign.com/wordpress-web-design/embedding-youtube-videos-flickr-images-and-more-in-wordpress-2-9#comments</comments>
		<pubDate>Wed, 27 Jan 2010 20:21:36 +0000</pubDate>
		<dc:creator>Aaron Keenan</dc:creator>
				<category><![CDATA[wordpress web design]]></category>

		<guid isPermaLink="false">http://www.junowebdesign.com/?p=2729</guid>
		<description><![CDATA[WordPress 2.9 has greatly increased the ease of embedding videos, images and other types of content. You are now able to display videos on your site from, for example, YouTube simply by entering the url of the YouTube video as plain text in a WordPress page or post. It is also possible to similarly embed [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 2.9 has greatly increased the ease of embedding videos, images and other types of content. You are now able to display videos on your site from, for example, YouTube simply by entering the url of the YouTube video as plain text in a WordPress page or post. It is also possible to similarly embed videos from Vimeo, DailyMotion, Google Video and other video sites or embed images from Flickr and Photobucket. Embedding articles from Scribd or polls from PollDaddy is equally staightforward. A more comprehensive list of sites that you can embed from using this method is available at <a href="http://codex.wordpress.org/Embeds">http://codex.wordpress.org/Embeds</a> .</p>
<p>The example displayed below shows the post content in the admin (4 urls entered as plain text on a separate line &#8211; one from Flickr, one from Scribd, one from YouTube and one from PollDaddy) and the next two screenshots display the output on the front end of the site (a Flickr image, a Scribd article, a YouTube video and a PollDaddy poll).</p>
<p><img class="alignnone size-medium wp-image-2730" title="oembed-post-admin" src="http://www.junowebdesign.com/wp-content/uploads/2010/01/oembed-post-admin-588x365.png" alt="oembed in the wordpress admin" width="588" height="365" /></p>
<p><img class="alignnone size-medium wp-image-2732" title="embedded-flickr-scribd" src="http://www.junowebdesign.com/wp-content/uploads/2010/01/embedded-flickr-scribd-588x451.png" alt="embedded flickr and scribd content in wordpress using oembed" width="588" height="451" /></p>
<p><img class="alignnone size-medium wp-image-2731" title="embedded-youtube-polldaddy" src="http://www.junowebdesign.com/wp-content/uploads/2010/01/embedded-youtube-polldaddy-588x411.png" alt="embedded youtube and polldaddy content in wordpress using oembed" width="588" height="411" /></p>
<p>This is all possible in WordPress 2.9 through it&#8217;s support of the oEmbed protocol. This protocol enables your site to query another site for the code needed to embed parts of its content.</p>
<p>By default you are only able to embed content from a list of sites approved by WordPress. This can be extended by using the <a rel="nofollow" href="http://wordpress.org/extend/plugins/enable-oembed-discovery/">oEmbed Discovery plugin</a> or, for developers, using the template tags wp_oembed_add_provider() (for allowing embedded content from an oEmbed-enabled site) and wp_embed_register_handler() (to enable embedded content from a non-oEmbed site).</p>
<p>If you would, however, prefer to prevent links from being converted to embedded content, this feature can be turned off under Settings &gt; Media. There you will need to deselect the options labelled &#8216;Attempt to automatically embed all plain text URLs&#8217; and &#8216;Attempt to embed content from unknown URLs using oEmbed&#8217;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.junowebdesign.com/wordpress-web-design/embedding-youtube-videos-flickr-images-and-more-in-wordpress-2-9/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image Editing in WordPress</title>
		<link>http://www.junowebdesign.com/wordpress-web-design/image-editing-in-wordpress</link>
		<comments>http://www.junowebdesign.com/wordpress-web-design/image-editing-in-wordpress#comments</comments>
		<pubDate>Mon, 18 Jan 2010 16:02:48 +0000</pubDate>
		<dc:creator>Aaron Keenan</dc:creator>
				<category><![CDATA[wordpress web design]]></category>

		<guid isPermaLink="false">http://www.junowebdesign.com/?p=2702</guid>
		<description><![CDATA[The release of version 2.9 provided WordPress users with some very useful additional image editing capabilities. In the following article we will look at some of the new options for reversing, rotating, cropping and resizing images. When you are editing a page or post, a row of tools for uploading additional files is available just [...]]]></description>
			<content:encoded><![CDATA[<p>The release of version 2.9 provided WordPress users with some very useful additional image editing capabilities. In the following article we will look at some of the new options for reversing, rotating, cropping and resizing images.</p>
<p>When you are editing a page or post, a row of tools for uploading additional files is available just above the main content entry box. These tools are labelled &#8216;Upload/Insert&#8217; and the first is used to handle image files. Click on this tool to open the media file pop up window.</p>
<p><img class="alignleft size-full wp-image-2707" title="Screen shot 2010-01-18 at 15.51.18" src="http://www.junowebdesign.com/wp-content/uploads/2010/01/Screen-shot-2010-01-18-at-15.51.18.png" alt="Screen shot 2010-01-18 at 15.51.18" width="219" height="31" /></p>
<p>From the pop up window, click on &#8216;Select Files&#8217; and choose the image you want to upload.</p>
<p>Once this file has uploaded select the &#8216;Edit Image&#8217; button.</p>
<p><img class="alignleft size-full wp-image-2708" title="Screen shot 2010-01-18 at 15.52.54" src="http://www.junowebdesign.com/wp-content/uploads/2010/01/Screen-shot-2010-01-18-at-15.52.54.png" alt="Screen shot 2010-01-18 at 15.52.54" width="372" height="172" /></p>
<p>To crop the image, click, hold and drag to select the area that you want to keep. Select the crop tool from the row of options at the top and then click &#8216;Save&#8217; to apply the changes.</p>
<p><img class="alignleft size-full wp-image-2709" title="Screen shot 2010-01-18 at 15.53.16" src="http://www.junowebdesign.com/wp-content/uploads/2010/01/Screen-shot-2010-01-18-at-15.53.16.png" alt="Screen shot 2010-01-18 at 15.53.16" width="536" height="446" /></p>
<p>The additional buttons along the top can be clicked to rotate clockwise, rotate anticlockwise, flip vertically and flip horizontally. Remember to select &#8216;Save&#8217; to apply the changes.</p>
<p>In addition to the original image file uploaded, WordPress generates versions in 3 other sizes: thumbnail, medium and large (the default sizes for these can be specified under Settings &gt; Media). When you are editing images using the new options in WordPress 2.9 and above, you can choose to apply these alterations to all sizes, only the thumbnail versions or all sizes except the thumbnail versions.</p>
<p>We are very pleased to see this functionality added to the WordPress core as it means that simple editing tasks can be handled without the need for external software which can be expensive and cumbersome. While the options may appear quite limited compared to what external software and plugins can offer, they are nonetheless very useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.junowebdesign.com/wordpress-web-design/image-editing-in-wordpress/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Database Backup Plugin</title>
		<link>http://www.junowebdesign.com/wordpress-web-design/wordpress-database-backup-plugin</link>
		<comments>http://www.junowebdesign.com/wordpress-web-design/wordpress-database-backup-plugin#comments</comments>
		<pubDate>Thu, 07 Jan 2010 00:34:42 +0000</pubDate>
		<dc:creator>Aaron Keenan</dc:creator>
				<category><![CDATA[wordpress web design]]></category>

		<guid isPermaLink="false">http://www.junowebdesign.com/?p=2675</guid>
		<description><![CDATA[Today we are very thankful for one highly recommend and potentially invaluable plugin: the WordPress Database Backup plugin. It&#8217;s likely that you have been frustrated several times by losing unsaved work when your computer or one of it&#8217;s applications has crashed unexpectedly. Just imagine, then, the all-consuming sorrow of losing weeks, months or even years [...]]]></description>
			<content:encoded><![CDATA[<p>Today we are very thankful for one highly recommend and potentially invaluable plugin: the <a rel="nofollow" href="http://ilfilosofo.com/blog/wp-db-backup/">WordPress Database Backup plugin</a>.</p>
<p>It&#8217;s likely that you have been frustrated several times by losing unsaved work when your computer or one of it&#8217;s applications has crashed unexpectedly. Just imagine, then, the all-consuming sorrow of losing weeks, months or even years of blog posts or other site content. Your hosting company may provide a responsible backup service (or you may have a well-considered system in place if your site is self-hosted) but some extra insurance can be crucial if the unexpected happens (as it did for one of our client sites today).</p>
<p>The WordPress Database Backup plugin makes backing up <a href="http://www.junowebdesign.com/wordpress-web-design">WordPress</a> content a painless process. Once the plugin has been added and activated through the WordPress admin section, it is then possible to specify an email address for the database backups to be sent to. Regular automatic backups can be set up to be received at your email address at a chosen interval. This interval can range from every hour (suitable for a very active site)  to every week (for a site where content is changed less frequently). Once these few options have been set, the latest content backup will be emailed to you regularly and potential catastrophes avoided with no further effort required.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.junowebdesign.com/wordpress-web-design/wordpress-database-backup-plugin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Benefits of Using a Content Management System (CMS)</title>
		<link>http://www.junowebdesign.com/wordpress-web-design/content-management-system-cms-benifits</link>
		<comments>http://www.junowebdesign.com/wordpress-web-design/content-management-system-cms-benifits#comments</comments>
		<pubDate>Wed, 06 Jan 2010 13:38:25 +0000</pubDate>
		<dc:creator>Aaron Keenan</dc:creator>
				<category><![CDATA[wordpress web design]]></category>

		<guid isPermaLink="false">http://www.junowebdesign.com/?p=2647</guid>
		<description><![CDATA[A content management system can be used to: Simplify the addition and management of content on your site (so that this will all be possible without technical knowledge). Allow many people to edit and contribute to your site and allow control over which contributors have particular permissions. Set a template or theme for the site [...]]]></description>
			<content:encoded><![CDATA[<p>A content management system can be used to:
<ul>
<li>Simplify the addition and management of content on your site (so that this will all be possible without technical knowledge).</li>
<li>Allow many people to edit and contribute to your site and allow control over which contributors have particular permissions.</li>
<li>Set a template or theme for the site so that new content can be easily set to display with a consistent style.</li>
<li>Incorporate security features, <a href="http://www.junowebdesign.com/seo-nottingham">SEO</a> features and other functionality and keep up to date with upgrades.</li>
<li>Provide options to backup and export site content.</li>
</ul>
<p>Around 5% of sites currently online use some form of web CMS technology &#8211; this means that roughly 95% of current websites can only be edited with specialist technical knowledge. This is unfortunate for the vast majority of people who are unlikely to have the familiarity with HTML, CSS, PHP, JavaScript or other languages that would be needed to fully control the content and appearance of their site without a CMS.</p>
<p>Fortunately the web CMS options continue to improve and be used more widely, allowing more people to take control of their site. Our preferred content management system at <a href="http://www.junowebdesign.com">Juno</a> tends to be <a href="http://www.junowebdesign.com/wordpress-web-design">WordPress</a>. We find WordPress to be excellent in providing all the advantages listed above. We have been very pleased to see non-technical users managing text and images on their site and, in some cases, adding entirely new features to their site using WordPress plugins.</p>
<p>We&#8217;d be interested to hear about your experiences of using content management systems so please do add a comment if you have anything you feel compelled to share.</p>
<p>The next post in this series will feature more information about how WordPress compares with other popular web content management systems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.junowebdesign.com/wordpress-web-design/content-management-system-cms-benifits/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress &#8211; The Leading Open Source Content Management Application</title>
		<link>http://www.junowebdesign.com/wordpress-web-design/wordpress-the-leading-open-source-content-management-application</link>
		<comments>http://www.junowebdesign.com/wordpress-web-design/wordpress-the-leading-open-source-content-management-application#comments</comments>
		<pubDate>Tue, 05 Jan 2010 17:11:58 +0000</pubDate>
		<dc:creator>Aaron Keenan</dc:creator>
				<category><![CDATA[wordpress web design]]></category>

		<guid isPermaLink="false">http://www.junowebdesign.com/?p=2626</guid>
		<description><![CDATA[WordPress consistently triumphs in popularity polls and is in use on over 200 million websites. What most impresses me about WordPress is it&#8217;s flexibility: it&#8217;s excellent for the most straighforward site or blog but can also be extended to include ecommerce, forums, social media functionality and much more. In addition, this flexibility is aided by [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress consistently triumphs in popularity polls and is in use on over 200 million websites. What most impresses me about WordPress is it&#8217;s flexibility: it&#8217;s excellent for the most straighforward site or blog but can also be extended to include <a href="http://www.junowebdesign.com/magento">ecommerce</a>, forums, social media functionality and much more. In addition, this flexibility is aided by an enthusiastic community that provide many of the plugins to extend the WordPress core free of charge. The result is that WordPress represents an excellent, cost-effective option for a wide range of sites.</p>
<p>I will be posting regularly on this blog about what <a href="http://www.junowebdesign.com/wordpress-web-design">WordPress</a> has to offer as a Content Management System and ways to take advantage of this functionality. Subjects that will be covered include:
<ul>
<li>What a Content Management System (CMS) is and how it could benefit your site</li>
<li>How WordPress compares with other content management solutions</li>
<li>Recommended WordPress plugins</li>
<li>New features in WordPress 3 (when it is released)</li>
<li>WordPress tips &amp; tricks</li>
<li>How to improve the search engine performance of WordPress sites</li>
<li>WordPress security features &amp; options</li>
<li>How to turn your <a href="http://www.junowebdesign.com">web design</a> into a site theme</li>
</ul>
<p><img class="alignnone size-full wp-image-2632" title="wordpress_logo" src="http://www.junowebdesign.com/wp-content/uploads/2010/01/wordpress_logo.jpg" alt="wordpress_logo" width="200" height="200" /></p>
<p>We will also be very pleased to hear any suggestions for topics relating to WordPress that you would be interested to find out more about.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.junowebdesign.com/wordpress-web-design/wordpress-the-leading-open-source-content-management-application/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching using disk: basic
Object Caching 1286/1400 objects using disk: basic

Served from: www.junowebdesign.com @ 2012-02-09 01:06:05 -->
