<?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>Yorgo Nestoridis &#187; Semiomantics</title>
	<atom:link href="http://yorgonestoridis.com/category/yorgo-nestoridis-development/semiomantics/feed/" rel="self" type="application/rss+xml" />
	<link>http://yorgonestoridis.com</link>
	<description>Media Marketing Publishing</description>
	<lastBuildDate>Mon, 21 May 2012 16:33:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to build a Custom WordPress Site 3</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis/how-to-build-a-custom-wordpress-site-3/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis/how-to-build-a-custom-wordpress-site-3/#comments</comments>
		<pubDate>Thu, 17 May 2012 09:14:26 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Blog Master Class]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics Design]]></category>
		<category><![CDATA[Semiomantics Project Management]]></category>
		<category><![CDATA[Semiomantics Tutorial]]></category>
		<category><![CDATA[Semiomantics Web Development]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WordPress Training]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Custom Post Functionality]]></category>
		<category><![CDATA[Custom Post Variables]]></category>
		<category><![CDATA[How to build a custom WordPress site]]></category>
		<category><![CDATA[WordPress Custom Post Types]]></category>
		<category><![CDATA[WordPress Custom Theme]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=23007</guid>
		<description><![CDATA[Customizing WordPress Child Theme In this tutorial we will create Custom Post Types and add variables and functionality to them. Also we will add some styling for more user-friendly display in the dashboard. Having set up our basic Child Theme structure we will now proceed with the customization. But before that we will do some basic WP configuration and go through the settings. You may be used to building WordPress based sites and therefore you may have some habits in as much as settings and configuration are concerned. Some basic WP Settings Here is what I do in the dashboard: 1. Trash and permanently delete the Hello World Post. 2. Delete the default Links. 3. Set Permalinks to: /%category%/%postname%/ 4. Under Settings General enter Blog Name and Tagline; for the purpose of this exercise I use  as a Title: WordPress TTP and as a Tagline: Tips, Themes and Plugins 5. Add some content to test content display by importing an RSS feed using a plugin such as Feedwordpress. I pulled into a new category called Blog the feed from my author-blog at: http://yorgonestoridis.com/feed Custom Posts and Child Theme We have set up a basic child theme for the purpose of [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/how-to-build-a-custom-wordpress-site-2/' rel='bookmark' title='How to build a Custom WordPress Site 2'>How to build a Custom WordPress Site 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/how-to-build-a-custom-wordpress-site/' rel='bookmark' title='How to build a custom WordPress Site'>How to build a custom WordPress Site</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/custom-widgets-for-wordpress/' rel='bookmark' title='Custom Widgets for WordPress'>Custom Widgets for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/' rel='bookmark' title='WordPress 3.4 Beta'>WordPress 3.4 Beta</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/' rel='bookmark' title='Facebook Strategy with WordPress'>Facebook Strategy with WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Customizing_WordPress_Child_Theme"><h2>Customizing WordPress Child Theme</h2></span>
<div class='toc wptoc'>
<h2>Contents</h2>
<ol class='toc-odd level-1'>
	<li>
		<a href="#Customizing_WordPress_Child_Theme">Customizing WordPress Child Theme</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#Some_basic_WP_Settings">Some basic WP Settings</a>
			</li>
			<li>
				<a href="#Custom_Posts_and_Child_Theme">Custom Posts and Child Theme</a>
			</li>
			<li>
				<a href="#Child_Theme_functions.php">Child Theme functions.php</a>
			</li>
			<li>
				<a href="#Define_Post_Types_in_posttypes.php">Define Post Types in posttypes.php</a>
				<ol class='toc-odd level-3'>
					<li>
						<a href="#Custom_Post_Types">1. Custom Post Types</a>
					</li>
					<li>
						<a href="#Add_advanced_Variables">2. Add advanced Variables</a>
					</li>
				</ol>
			<li>
				<a href="#Add_advanced_functionality">3. Add advanced functionality</a>
				<ol class='toc-odd level-3'>
					<li>
						<a href="#Change_the_menu_position">4. Change the menu position</a>
					</li>
					<li>
						<a href="#Add_Custom_Post_Type_Icons">5. Add Custom Post Type Icons</a>
					</li>
				</ol>
			<li>
				<a href="#Resulting_posttypes.php_code:">Resulting posttypes.php code:</a>
			</li>
</ol>
</ol>
</ol>
</div>
<div class='wptoc-end'> </div>
<p>In this tutorial we will create Custom Post Types and add variables and functionality to them. Also we will add some styling for more user-friendly display in the dashboard.</p>
<p>Having set up our basic Child Theme structure we will now proceed with the customization. But before that we will do some basic WP configuration and go through the settings. You may be used to building WordPress based sites and therefore you may have some habits in as much as settings and configuration are concerned.</p>
<div id="attachment_23010" class="wp-caption alignnone" style="width: 470px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/05/custom-wp-theme-magazine.jpg"><img class="size-large wp-image-23010" title="Semiomantics XO Custom Magazine for WordPress" src="http://yorgonestoridis.com/wp-content/uploads/2012/05/custom-wp-theme-magazine-460x576.jpg" alt="Semiomantics XO Custom Magazine for WordPress" width="460" height="576" /></a><p class="wp-caption-text">Semiomantics XO Custom Magazine for WordPress</p></div>
<span id="Some_basic_WP_Settings"><h3>Some basic WP Settings</h3></span>
<p>Here is what I do in the dashboard:</p>
<p>1. Trash and permanently delete the Hello World Post.</p>
<p>2. Delete the default Links.</p>
<p>3. Set Permalinks to: /%category%/%postname%/</p>
<p>4. Under Settings General enter Blog Name and Tagline; for the purpose of this exercise I use  as a Title: WordPress TTP and as a Tagline: Tips, Themes and Plugins</p>
<p>5. Add some content to test content display by importing an RSS feed using a plugin such as Feedwordpress. I pulled into a new category called Blog the feed from my author-blog at:</p>
<p>http://yorgonestoridis.com/feed</p>
<span id="Custom_Posts_and_Child_Theme"><h3>Custom Posts and Child Theme</h3></span>
<p>We have set up a basic child theme for the purpose of modifying and customizing the Parent Theme. Creating structural modifications such as creating Custom Posts and Taxonomies are not strictly speaking theme relevant but should apply to all themes or as the case may be, to multiple themes in a Multi-user installation.</p>
<p>For this reason we will lodge the file which defines the custom posts outside any specific theme folder but inside wp-contents/themes.</p>
<p>We create a file called posttypes.php in wp-contents/themes. This file serves to define our custom post types and the way they integrate into the WP architecture.</p>
<p>In order to include the new Post Types in our Child theme, we include the posttype.php using an include function. This we doby adding a new file to our child theme; this file we call functions.php.</p>
<span id="Child_Theme_functions.php"><h3>Child Theme functions.php</h3></span>
<p>As you know, every WP theme contains a functions.php file; when creating a child theme which needs to expand the functions existing in the parent theme, then we just add a file with the same name, ‘functions.php’ to the child theme and append the functions defined in the parent theme.</p>
<p><strong>Note</strong>: functions.php of the child theme does not override existing functions in the parent theme as is the case with styles (‘style.css)!</p>
<p>PHP allows us easily to include files in a script with the ‘include’ function and then by adding the URL to the file you wish to include.</p>
<p>Our ‘functions.php’ file will look as follows:</p>
<pre class="brush: php; title: ; notranslate">

&lt;?php
include_once (ABSPATH . 'wp-content/themes/posttypes.php');
?&gt;
</pre>
<p>Please note that we use the ABSPATH function to construct the URL as the normal url path</p>
<pre class="brush: php; title: ; notranslate"> url(&quot;.../themes/posttypes.php&quot;) </pre>
<p>does not work here.</p>
<p>Save functions.php into your Child Theme Folder.</p>
<span id="Define_Post_Types_in_posttypes.php"><h3>Define Post Types in posttypes.php</h3></span>
<p>In order to set up our post types we proceed step by step:</p>
<ol>
<li>Set up Custom Post Types</li>
<li>Add advanced Variables to Post Types</li>
<li>Add advanced custom post type functionality</li>
<li>Change the Menu Position (Dashboard) of the Custom Post Types</li>
<li>Add custom post type icon</li>
</ol>
<span id="Custom_Post_Types"><h4>1. Custom Post Types</h4></span>
<p>Custom Post Types allow to separate different content from the traditional blog content. Blog content usually is edited as Posts and Pages, whereas Pages (static content) can be organized in a hierarchical way and posts are sorted by categories and tags. In order to display static content (pages) using customized layout, we can create different page templates easily.</p>
<p>Custom Post Types allow to sort content by Posts and Custom Post Types whereas custom post types are similar to posts but using custom taxonomies and as the case may be custom layouts or design adapted to the content. A typical example is a single product page from a shop compared to a single post page on the blog section of the website.</p>
<p>For the purpose of our exercise we will create 3 Custom Post Types</p>
<ul>
<li>WordPress Tips</li>
<li>WordPress Themes</li>
<li>WordPress Plugins</li>
</ul>
<p>Setting up post types is relatively easy; while we could use plugins to create custom post types, I think hard-coding is a more solid and professional way of creating them. To create a new Custom Post Type we just need to add a few lines of code to the functions file or in our case to the abstraction file at posttypes.php which will then be included int the functions.php as per above where we have added the include function into functions.php.</p>
<p>We will create now the 3 Custom Post Types whereas the code used for each of them is the same except for the post type names and the function names.</p>
<p>To create the first post type, edit posttypes.php and paste in:</p>
<pre class="brush: php; title: ; notranslate">

&lt;?php

// Add new post type for WP Tips
add_action('init', 'wordpress_tips_init');
function wordpress_tips_init()
{
$args = array(
'label' =&gt; _x('WP Tips'),
'singular_label' =&gt; _x('WP Tip'),
'public' =&gt; true,
'publicly_queryable' =&gt; true,
'show_ui' =&gt; true,
'query_var' =&gt; true,
'rewrite' =&gt; true,
'capability_type' =&gt; 'post',
'hierarchical' =&gt; false,
'menu_position' =&gt; null,
'supports' =&gt; array('title','editor','comments')
);
register_post_type('wordpress_tips',$args);
}
</pre>
<p>Save the file.</p>
<p>At the top we type a comment explaining what the following code is all about (Add new Post Type for WP Tips). Then we call the function in to WordPress with ‘add_action’ and at the bottom we register the post type. As you can see the function consists of a number of arguments which we will look into later ($args).</p>
<p>Check out your Dashboard now and you will see that the new post type is added to the menu just above ‘Appearance’.</p>
<p>To add new post types, you just need to copy and paste the above code and make simple changes to the name and labels of the post type.</p>
<span id="Add_advanced_Variables"><h4>2. Add advanced Variables</h4></span>
<p>The above post types work, however they are not well refined. For this reason we will add some more variables. As the new posts are still called “Post” in the editor for example we will need to relabel to display the real name of the post type. For this we will write a label variable which can take an array of labels and we thus relabel all instances of our Custom Post Type.</p>
<p>The variable we create with the array of labels looks as follows:</p>
<pre class="brush: php; title: ; notranslate">

$wordpress_tips_labels = array(
'name' =&gt; _x('WP Tips', 'post type general name'),
'singular_name' =&gt; _x('WP Tip', 'post type singular name'),
'all_items' =&gt; __('All WP Tips'),
'add_new' =&gt; _x('Add new WP Tip', 'wordpress_tips'),
'add_new_item' =&gt; __('Add new WP Tip'),
'edit_item' =&gt; __('Edit WP Tip'),
'new_item' =&gt; __('New WP Tip'),
'view_item' =&gt; __('View WP Tip'),
'search_items' =&gt; __('Search in WP Tips'),
'not_found' =&gt;  __('No WP Tips found'),
'not_found_in_trash' =&gt; __('No WP Tips found in trash'),
'parent_item_colon' =&gt; ''
);
</pre>
<p>We will insert this piece of code just before our block of arguments and then change the arguments accordingly as follows:</p>
<pre class="brush: php; title: ; notranslate">

&lt;?php

// Add new post type for WP Tips
add_action('init', 'wordpress_tips_init');
function wordpress_tips_init()
{

$wordpress_tips_labels = array(
'name' =&gt; _x('WP Tips', 'post type general name'),
'singular_name' =&gt; _x('WP Tip', 'post type singular name'),
'all_items' =&gt; __('All WP Tips'),
'add_new' =&gt; _x('Add new WP Tip', 'wordpress_tips'),
'add_new_item' =&gt; __('Add new WP Tip'),
'edit_item' =&gt; __('Edit WP Tip'),
'new_item' =&gt; __('New WP Tip'),
'view_item' =&gt; __('View WP Tip'),
'search_items' =&gt; __('Search in WP Tips'),
'not_found' =&gt;  __('No WP Tips found'),
'not_found_in_trash' =&gt; __('No WP Tips found in trash'),
'parent_item_colon' =&gt; ''
);
$args = array(

/*      'label' =&gt; _x('WP Tips'), */
'labels' =&gt; $wordpress_tips_labels,
/*      'singular_label' =&gt; _x('WP Tips'),   */
'public' =&gt; true,
'publicly_queryable' =&gt; true,
'show_ui' =&gt; true,
'query_var' =&gt; true,
'rewrite' =&gt; true,
'capability_type' =&gt; 'post',
'hierarchical' =&gt; false,
'menu_position' =&gt; null,
'supports' =&gt; array('title','editor','comments')
);
register_post_type('wordpress_tips',$args);
}
</pre>
<p>As you can see from the two commented lines, we have changed ‘label’ to ‘labels and defined with the variable from above ‘$wordpress_tips_labels’ and we have deleted the ‘singular label’ as it is replaced wby ‘singular name’ from the label variable.</p>
<p>For the other new post types it’s the same game, just copy and paste and change the labels accordingly.</p>
<p>Save posttypes.php and check it out in your dashboard.</p>
<p>You will now see all labels added and your site becomes a lot more user-friendly and less confusing.</p>
<span id="Add_advanced_functionality"><h3>3. Add advanced functionality</h3></span>
<p>We can define the functionalities of our new post types with an array under the variable ‘supports’; basically the ‘supports’ line defines which functionalities should be supported, i.e. which content should be displayed.</p>
<p>In our example, the line above looks like this:</p>
<pre class="brush: php; title: ; notranslate">

'supports' =&gt; array('title','editor','comments')
</pre>
<p>When you go to your dashboard, and add a new WP Tip you will see the editor shows the ‘title’, ‘content’ and ‘comments’ fields.</p>
<p>While we can go crazy on adding supported functionality, we will here just look at some standard functionalities. To add more functionality we just need to append the array in the supports variable like so:</p>
<pre class="brush: php; title: ; notranslate">

'supports' =&gt; array('title','editor','author','thumbnail','excerpt','comments','custom-fields'),
'has_archive' =&gt; 'wordpress_tips'
</pre>
<p>By adding the above functionalities to the supports variable, we get something pretty close to the standard post editor, since we add the author, excerpts and custom fields as well as the featured picture functionality.</p>
<p>Also we can add a new variable, such as ‘has archive’ and then name the archive, in our example ‘WordPress Tips’.</p>
<p>This archive variable allows us to create an index page just for the WP Tips post  types.</p>
<p>Our Code for the WP Tips Custom Post Type is as follows:</p>
<pre class="brush: php; title: ; notranslate">

&lt;?php

// Add new post type for WP Tips
add_action('init', 'wordpress_tips_init');
function wordpress_tips_init()
{

$wordpress_tips_labels = array(
'name' =&gt; _x('WP Tips', 'post type general name'),
'singular_name' =&gt; _x('WP Tip', 'post type singular name'),
'all_items' =&gt; __('All WP Tips'),
'add_new' =&gt; _x('Add new WP Tip', 'wordpress_tips'),
'add_new_item' =&gt; __('Add new WP Tip'),
'edit_item' =&gt; __('Edit WP Tip'),
'new_item' =&gt; __('New WP Tip'),
'view_item' =&gt; __('View WP Tip'),
'search_items' =&gt; __('Search in WP Tips'),
'not_found' =&gt;  __('No WP Tips found'),
'not_found_in_trash' =&gt; __('No WP Tips found in trash'),
'parent_item_colon' =&gt; ''
);
$args = array(

/*      'label' =&gt; _x('WP Tips'), */
'labels' =&gt; $wordpress_tips_labels,
/*      'singular_label' =&gt; _x('WP Tips'),   */
'public' =&gt; true,
'publicly_queryable' =&gt; true,
'show_ui' =&gt; true,
'query_var' =&gt; true,
'rewrite' =&gt; true,
'capability_type' =&gt; 'post',
'hierarchical' =&gt; false,
'menu_position' =&gt; null,
'supports' =&gt; array('title','editor','author','thumbnail','excerpt','comments','custom-fields'),
'has_archive' =&gt; 'wordpress_tips'
);
register_post_type('wordpress_tips',$args);
}
</pre>
<p>Copy and paste with the necessary changes for the other custom post types and save the file.</p>
<p>Check it out from the Dashboard Menu and the Editor.</p>
<span id="Change_the_menu_position"><h4>4. Change the menu position</h4></span>
<p>As per now, our custom posts menu in the dashboard is positioned just above appearance and below comments. As custom posts are similar to posts, we want to move the custom post tabs just below the Posts tab.</p>
<p>As you can see from our code above, the menu position is set to ‘null’. The value ‘null’ makes that the custom post types are added at the bottom of the first section of the dashboard menu.</p>
<p>Depending of where you want to position your custom posts, you will need to change the value ‘null’ to another value according to the below reference scale:</p>
<p>0 — at the very top<br />
5 — below Posts<br />
10 — below Media<br />
15 — below Links<br />
20 — below Pages<br />
25 — below comments<br />
60 — below first separator<br />
65 — below Plugins<br />
70 — below Users<br />
75 — below Tools<br />
80 — below Settings<br />
100 — below second separator</p>
<p>As we aim the spot below “Posts” we will use the value ‘5’, which will result in</p>
<pre class="brush: php; title: ; notranslate">

...

'menu_position' =&gt; 5,

...
</pre>
<p>If you want to set a particular order, you can also use 3 different numbers, like 4,5 and 6 respectively.</p>
<p>Do the modification inside the arguments of each post type and save.</p>
<p>By repositioning the custom post type menu items , we signal priority and importance.</p>
<p>Check it out from the dashboard and note that our custom posts are right below ‘Posts’ now.</p>
<span id="Add_Custom_Post_Type_Icons"><h4>5. Add Custom Post Type Icons</h4></span>
<p>In order to make our custom post types stick out from the menu and to add user-friendly visual identifiers, we replace the default icons with custom icons.</p>
<p>There are two sizes needed, 16px and 32 px for the menu and the page title area respectively.</p>
<p>I have created sample icons and psd files for your convenience: please download from <a title="Icons" href="http://yorgonestoridis.com/download/xoximages.rar" target="_blank">HERE</a>.</p>
<p>Decompress the downloaded rar file and copy the image folder into wp-contents/themes (as we had done with posttypes.php, as we want to make these images available to all themes.</p>
<p>To add these icons we introduce a new function to posttypes.php with a function batch including some css/html code for styling purposes:</p>
<pre class="brush: php; title: ; notranslate">

// Add new Custom Post Type icons
add_action( 'admin_head', 'wordpress_icons' );
function wordpress_icons() {
?&gt;
&lt;style type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
#menu-posts-wordpress_tips .wp-menu-image {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/tips-16x16.png) no-repeat 6px !important;
}
.icon32-posts-wordpress_tips {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/tips-32x32.png) no-repeat !important;
}
#menu-posts-wordpress_themes .wp-menu-image {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/themes-16x16.png) no-repeat 6px !important;
}
.icon32-posts-wordpress_themes {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/themes-32x32.png) no-repeat !important;
}
#menu-posts-wordpress_plugins .wp-menu-image {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/plugins-16x16.png) no-repeat 6px !important;
}
.icon32-posts-wordpress_plugins {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/plugins-32x32.png) no-repeat !important;
}

&lt;/style&gt;
&lt;?php }
</pre>
<p>Note the incomplete php delimiter at the end which is needed to switch back to php from css/html code.</p>
<span id="Resulting_posttypes.php_code:"><h3>Resulting posttypes.php code:</h3></span>
<p>At this stage, your posttypes.php looks as follows:</p>
<pre class="brush: php; title: ; notranslate">

&lt;?php

// Add new post type for WP Tips
add_action('init', 'wordpress_tips_init');
function wordpress_tips_init()
{
$wordpress_tips_labels = array(
'name' =&gt; _x('WP Tips', 'post type general name'),
'singular_name' =&gt; _x('WP Tip', 'post type singular name'),
'all_items' =&gt; __('All WP Tips'),
'add_new' =&gt; _x('Add new WP Tip', 'wordpress_tips'),
'add_new_item' =&gt; __('Add new WP Tip'),
'edit_item' =&gt; __('Edit WP Tip'),
'new_item' =&gt; __('New WP Tip'),
'view_item' =&gt; __('View WP Tip'),
'search_items' =&gt; __('Search in WP Tips'),
'not_found' =&gt;  __('No WP Tips found'),
'not_found_in_trash' =&gt; __('No WP Tips found in trash'),
'parent_item_colon' =&gt; ''
);
$args = array(
/*        'label' =&gt; _x('WP Tips'), */
'labels' =&gt; $wordpress_tips_labels,
/*        'singular_label' =&gt; _x('WP Tips'),   */
'public' =&gt; true,
'publicly_queryable' =&gt; true,
'show_ui' =&gt; true,
'query_var' =&gt; true,
'rewrite' =&gt; true,
'capability_type' =&gt; 'post',
'hierarchical' =&gt; false,
'menu_position' =&gt; 5,
'supports' =&gt; array('title','editor','author','thumbnail','excerpt','comments','custom-fields'),
'has_archive' =&gt; 'wordpress_tips'
);
register_post_type('wordpress_tips',$args);
}

// Add new post type for WP Themes
add_action('init', 'wordpress_themes_init');
function wordpress_themes_init()
{

$wordpress_themes_labels = array(
'name' =&gt; _x('WP Themes', 'post type general name'),
'singular_name' =&gt; _x('WP Theme', 'post type singular name'),
'all_items' =&gt; __('All WP Themes'),
'add_new' =&gt; _x('Add new WP Theme', 'wordpress_themes'),
'add_new_item' =&gt; __('Add new WP Theme'),
'edit_item' =&gt; __('Edit WP Theme'),
'new_item' =&gt; __('New WP Theme'),
'view_item' =&gt; __('View WP Theme'),
'search_items' =&gt; __('Search in WP Themes'),
'not_found' =&gt;  __('No WP Theme found'),
'not_found_in_trash' =&gt; __('No WP Theme found in trash'),
'parent_item_colon' =&gt; ''
);

$args = array(
'labels' =&gt; $wordpress_themes_labels,
'public' =&gt; true,
'publicly_queryable' =&gt; true,
'show_ui' =&gt; true,
'query_var' =&gt; true,
'rewrite' =&gt; true,
'capability_type' =&gt; 'post',
'hierarchical' =&gt; false,
'menu_position' =&gt; 5,
'supports' =&gt; array('title','editor','author','thumbnail','excerpt','comments','custom-fields'),
'has_archive' =&gt; 'wordpress_themes'
);
register_post_type('wordpress_themes',$args);
}

// Add new post type for WP Plugins
add_action('init', 'wordpress_plugins_init');
function wordpress_plugins_init()
{

$wordpress_plugins_labels = array(
'name' =&gt; _x('WP Plugins', 'post type general name'),
'singular_name' =&gt; _x('WP Plugin', 'post type singular name'),
'all_items' =&gt; __('All WP Plugins'),
'add_new' =&gt; _x('Add new WP Plugin', 'wordpress_plugins'),
'add_new_item' =&gt; __('Add new WP Plugin'),
'edit_item' =&gt; __('Edit WP Plugin'),
'new_item' =&gt; __('New WP Plugin'),
'view_item' =&gt; __('View WP Plugin'),
'search_items' =&gt; __('Search in WP Plugins'),
'not_found' =&gt;  __('No WP Plugin found'),
'not_found_in_trash' =&gt; __('No WP Plugin found in trash'),
'parent_item_colon' =&gt; ''
);

$args = array(
'labels' =&gt; $wordpress_plugins_labels,
'public' =&gt; true,
'publicly_queryable' =&gt; true,
'show_ui' =&gt; true,
'query_var' =&gt; true,
'rewrite' =&gt; true,
'capability_type' =&gt; 'post',
'hierarchical' =&gt; false,
'menu_position' =&gt; 5,
'supports' =&gt; array('title','editor','author','thumbnail','excerpt','comments','custom-fields'),
'has_archive' =&gt; 'wordpress_plugins'
);
register_post_type('wordpress_plugins',$args);
}

// Add new Custom Post Type icons
add_action( 'admin_head', 'wordpress_icons' );
function wordpress_icons() {
?&gt;
&lt;style type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
#menu-posts-wordpress_tips .wp-menu-image {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/tips-16x16.png) no-repeat 6px !important;
}
.icon32-posts-wordpress_tips {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/tips-32x32.png) no-repeat !important;
}
#menu-posts-wordpress_themes .wp-menu-image {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/themes-16x16.png) no-repeat 6px !important;
}
.icon32-posts-wordpress_themes {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/themes-32x32.png) no-repeat !important;
}
#menu-posts-wordpress_plugins .wp-menu-image {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/plugins-16x16.png) no-repeat 6px !important;
}
.icon32-posts-wordpress_plugins {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/plugins-32x32.png) no-repeat !important;
}

&lt;/style&gt;
&lt;?php }

?&gt;
</pre>
<p>Check it out from your dashboard and you should see something similar to this:</p>
<div id="attachment_23012" class="wp-caption alignnone" style="width: 470px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/05/yorgo-12-3.jpg"><img class="size-large wp-image-23012" title="Custom Post Types" src="http://yorgonestoridis.com/wp-content/uploads/2012/05/yorgo-12-3-460x356.jpg" alt="Custom Post Types" width="460" height="356" /></a><p class="wp-caption-text">Custom Post Types with Custom Icons</p></div>
<p> </p>
<p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/how-to-build-a-custom-wordpress-site-2/' rel='bookmark' title='How to build a Custom WordPress Site 2'>How to build a Custom WordPress Site 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/how-to-build-a-custom-wordpress-site/' rel='bookmark' title='How to build a custom WordPress Site'>How to build a custom WordPress Site</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/custom-widgets-for-wordpress/' rel='bookmark' title='Custom Widgets for WordPress'>Custom Widgets for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/' rel='bookmark' title='WordPress 3.4 Beta'>WordPress 3.4 Beta</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/' rel='bookmark' title='Facebook Strategy with WordPress'>Facebook Strategy with WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis/how-to-build-a-custom-wordpress-site-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to build a Custom WordPress Site 2</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/how-to-build-a-custom-wordpress-site-2/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/how-to-build-a-custom-wordpress-site-2/#comments</comments>
		<pubDate>Mon, 14 May 2012 10:25:22 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WordPress Training]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[Custom WP Theme]]></category>
		<category><![CDATA[How to build a custom WordPress site]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[WordPress Custom Developments]]></category>
		<category><![CDATA[WordPress Custom Theme]]></category>
		<category><![CDATA[WP Child Theme]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22998</guid>
		<description><![CDATA[Build a Custom WP with Semiomantics XO This post focuses on setting up our Main Theme and a Child Theme. For the purpose of this exercise we will use Semiomantics XO as the parent theme because it’s flexible, user-friendly and highly optimized. In fact you can use most any decent WP theme to follow this tutorial, namely the TwentyEleven which comes with the WP installation. Adding a Theme Like on any live site, our test site on BitNami allows us to add themes either from the Dashboard (upload the theme’s zip file) or by pasting the theme into the themes folder in wp-contents. Access your BitNami environment using Windows Explorer and surf to the themes folder. You will see the same folders and files structure under htdocs as you are used to when accessing your WordPress folder on a server using an FTP client. In order to add Themes, we just drop theme folders into the ‘themes’ folder as per above. As you can see, I have amongst others) added my Semiomantics XO (the ‘xo’ folder under themes). XO will serve as the parent theme of the new website. Instead however of customizing XO directly, I will create a child [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/how-to-build-a-custom-wordpress-site/' rel='bookmark' title='How to build a custom WordPress Site'>How to build a custom WordPress Site</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/' rel='bookmark' title='Semiomantics XO Transparent WordPress Drafts'>Semiomantics XO Transparent WordPress Drafts</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-make-wordpress-themes-responsive/' rel='bookmark' title='How to make WordPress Themes Responsive'>How to make WordPress Themes Responsive</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-themes-and-development/' rel='bookmark' title='WordPress Themes and Development'>WordPress Themes and Development</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/' rel='bookmark' title='WordPress 3.4 Beta'>WordPress 3.4 Beta</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Build_a_Custom_WP_with_Semiomantics_XO"><h2>Build a Custom WP with Semiomantics XO</h2></span>
<p>This post focuses on setting up our Main Theme and a Child Theme. For the purpose of this exercise we will use Semiomantics XO as the parent theme because it’s flexible, user-friendly and highly optimized. In fact you can use most any decent WP theme to follow this tutorial, namely the TwentyEleven which comes with the WP installation.</p>
<div id="attachment_22999" class="wp-caption alignnone" style="width: 470px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/05/custom-wp-magazine-theme-yorgoopublishing.jpg"><img class="size-large wp-image-22999" title="Semiomantics XO for WordPress - Custom Magazine" src="http://yorgonestoridis.com/wp-content/uploads/2012/05/custom-wp-magazine-theme-yorgoopublishing-460x596.jpg" alt="Semiomantics XO for WordPress - Custom Magazine" width="460" height="596" /></a><p class="wp-caption-text">Semiomantics XO for WordPress — Custom Magazine</p></div>
<span id="Adding_a_Theme"><h3>Adding a Theme</h3></span>
<p>Like on any live site, our test site on BitNami allows us to add themes either from the Dashboard (upload the theme’s zip file) or by pasting the theme into the themes folder in wp-contents.</p>
<p>Access your BitNami environment using Windows Explorer and surf to the themes folder. You will see the same folders and files structure under htdocs as you are used to when accessing your WordPress folder on a server using an FTP client.</p>
<div id="attachment_23000" class="wp-caption alignnone" style="width: 470px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/05/bitnami.jpg"><img class="size-large wp-image-23000" title="Folders on BitNamy WP Stack" src="http://yorgonestoridis.com/wp-content/uploads/2012/05/bitnami-460x526.jpg" alt="Folders on BitNamy WP Stack" width="460" height="526" /></a><p class="wp-caption-text">Folders on BitNamy WP Stack</p></div>
<p>In order to add Themes, we just drop theme folders into the ‘themes’ folder as per above. As you can see, I have amongst others) added my Semiomantics XO (the ‘xo’ folder under themes). XO will serve as the parent theme of the new website. Instead however of customizing XO directly, I will create a child theme which will contain all modifications. The advantage is clear: when an update or upgrade of the theme becomes available, the parent theme can be updated without destroying the child and restarting the customization job from scratch.</p>
<span id="Create_a_WP_Child_Theme_for_Semiomantics_XO"><h3>Create a WP Child Theme for Semiomantics XO</h3></span>
<p>A WordPress child theme consists first of all of a Folder to which we add a style-sheet.</p>
<p>This style-sheet contains a commented header which defines the parent theme folder as well as other optional data and it usually imports the parent theme’s style-sheet with a simple line of code (no need to copy paste the whole style-sheet). Also we will add a screenshot which will serve as a thumbnail in the Themes tab of our WP Dashboard.</p>
<div id="attachment_23001" class="wp-caption alignnone" style="width: 470px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/05/yorgo-12-1.jpg"><img class="size-large wp-image-23001" title="Style-sheet for Child Theme" src="http://yorgonestoridis.com/wp-content/uploads/2012/05/yorgo-12-1-460x381.jpg" alt="Style-sheet for Child Theme" width="460" height="381" /></a><p class="wp-caption-text">Style-sheet for Child Theme</p></div>
<p>As you can see above, I am editing my files using the free <a title="PSPAD" href="http://pspad.com" target="_blank">PSPad</a> which is handy to edit the various files we need to develop.</p>
<span id="How_to_Create_a_Child_Theme_step_by_Step"><h3>How to Create a Child Theme step by Step</h3></span>
<p>1. Add a new folder to the WP Themes folder under wp-contents/themes; name it as you like your theme to be named, in my case: yorgo12</p>
<p>2. Create a new file called style.css using your editor and save it into the new theme folder.</p>
<p>3. Edit the style.css file by adding a commented section defining:</p>
<ul>
<li>Theme Name  (yorgo12 in the above case)</li>
<li>Theme URI    (this is optional and can be your website where you may talk about your theme; in my case: semiomantics.com)</li>
<li>Description    (Optional; I have added a simple description, but you may well describe your Child theme, for example: 3 column minimalist child theme for Semiomantics XO.</li>
<li>Author:           (Optional; put your name.)</li>
<li>Template:  This is important: put the FOLDER NAME of the parent theme, in my case xo.</li>
<li>Version:          (Optional: I start with version 1.0)</li>
</ul>
<p>You could add other data as some authors do, such as Author’s URI and more, but that’s not necessary.</p>
<p><strong>NOTE</strong>: All the above information sits between comment tags (/*.….….*/)</p>
<p>Next, we import the style-sheet of the parent theme with the following line of code:</p>
<pre class="brush: php; title: ; notranslate">

@import url(&quot;../xo/style.css&quot;);
</pre>
<p>I have then added a comment to remind that you should not edit above unless you know what you do.</p>
<p>Your style.css file reads now similar to the following:</p>
<pre class="brush: php; title: ; notranslate">

/*
Theme Name:       yorgo12
Theme URI:        http://semiomantics.com
Description:      Child Theme for Semiomantics XO 12
Author:           Yorgo Nestoridis
Template:         xo
Version:          1.0
*/
@import url(&quot;../xo/style.css&quot;);
/* Edit here below*/
</pre>
<p>Save the file into the new Child Theme folder.</p>
<p>4. Add a Thumbnail</p>
<p>Usually the image represents a screenshot of the new site but it can also be a brand logo or any other image. Important: the image should be called ‘screenshot’ and be in png format to fit into WP. Use image size 300px x 225px for best display.</p>
<div id="attachment_23003" class="wp-caption alignnone" style="width: 310px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/05/screenshot1.png"><img class="size-full wp-image-23003" title="screenshot.png" src="http://yorgonestoridis.com/wp-content/uploads/2012/05/screenshot1.png" alt="screenshot.png" width="300" height="225" /></a><p class="wp-caption-text">screenshot.png</p></div>
<p>Drop the image into the Child Theme folder.</p>
<p>Let’s now activate our new Child Theme from the WP Dashboard under Appearance/Themes.</p>
<p>What you will see is an out of the box XO when looking at the front-end of the site.</p>
<p>Having set the base for our custom development, we will start now to adapt the site to the needs of the hypothetical customer. Continue reading the next post.</p>
<p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/how-to-build-a-custom-wordpress-site/' rel='bookmark' title='How to build a custom WordPress Site'>How to build a custom WordPress Site</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/' rel='bookmark' title='Semiomantics XO Transparent WordPress Drafts'>Semiomantics XO Transparent WordPress Drafts</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-make-wordpress-themes-responsive/' rel='bookmark' title='How to make WordPress Themes Responsive'>How to make WordPress Themes Responsive</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-themes-and-development/' rel='bookmark' title='WordPress Themes and Development'>WordPress Themes and Development</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/' rel='bookmark' title='WordPress 3.4 Beta'>WordPress 3.4 Beta</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/how-to-build-a-custom-wordpress-site-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to build a custom WordPress Site</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis/how-to-build-a-custom-wordpress-site/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis/how-to-build-a-custom-wordpress-site/#comments</comments>
		<pubDate>Mon, 14 May 2012 08:25:15 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Custom WordPress Development]]></category>
		<category><![CDATA[customize semiomantics xo]]></category>
		<category><![CDATA[WordPress Custom Development]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22994</guid>
		<description><![CDATA[Custom WordPress Design and Developments This post will start a series of articles about building custom Websites based on WordPress and the Semiomantics XO Theme. We will therefore use most of our remaining daily Ycademy calls this month to go into advanced customization issues. But first we will start at the beginning by planning and formulating a project which will allow us to test code, functions and design. The WordPress Custom Project For the purpose of this exercise, we will build plan and execute a hypothetical customer’s project. The new website will be about WordPress, namely about WordPress Tips, Themes and Plugins. It’s a site for a WordPress developer and web designer. The Architecture of the site The structure of the Website will be based on WordPress and include some static pages such as the About, Contact, Imprint and Privacy pages as well as structured dynamic content.  As the site will focus on 3 main topics, Tips, Themes and Plugins, we will build for each of these topics custom Posts and Taxonomies. The Developer’s environment To build the new website in a test environment, we install BitNami and namely the WordPress stack (free download). BitNami creates an independent (Apache) server [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/' rel='bookmark' title='XO Photo Press WordPress Theme'>XO Photo Press WordPress Theme</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/elegant-wordpress-by-semiomantics-101/' rel='bookmark' title='Elegant WordPress by Semiomantics 101'>Elegant WordPress by Semiomantics 101</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/' rel='bookmark' title='How to Customize your WordPress Typography'>How to Customize your WordPress Typography</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/' rel='bookmark' title='Semiomantics XO Transparent WordPress Drafts'>Semiomantics XO Transparent WordPress Drafts</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wordpress-personal-cms-and-blog/' rel='bookmark' title='WordPress Personal CMS and Blog'>WordPress Personal CMS and Blog</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Custom_WordPress_Design_and_Developments"><h2>Custom WordPress Design and Developments</h2></span>
<p>This post will start a series of articles about building custom Websites based on WordPress and the Semiomantics XO Theme.</p>
<p>We will therefore use most of our remaining daily Ycademy calls this month to go into advanced customization issues. But first we will start at the beginning by planning and formulating a project which will allow us to test code, functions and design.</p>
<div id="attachment_22995" class="wp-caption alignnone" style="width: 470px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/05/custom-wp-newspaper-magazine-theme.jpg"><img class="size-large wp-image-22995" title="Semiomantics XO Custom Theme for WordPress" src="http://yorgonestoridis.com/wp-content/uploads/2012/05/custom-wp-newspaper-magazine-theme-460x345.jpg" alt="Semiomantics XO Custom Theme for WordPress" width="460" height="345" /></a><p class="wp-caption-text">Semiomantics XO Custom Theme for WordPress</p></div>
<span id="The_WordPress_Custom_Project"><h3>The WordPress Custom Project</h3></span>
<p>For the purpose of this exercise, we will build plan and execute a hypothetical customer’s project.</p>
<p>The new website will be about WordPress, namely about WordPress Tips, Themes and Plugins. It’s a site for a WordPress developer and web designer.</p>
<span id="The_Architecture_of_the_site"><h3>The Architecture of the site</h3></span>
<p>The structure of the Website will be based on WordPress and include some static pages such as the About, Contact, Imprint and Privacy pages as well as structured dynamic content.  As the site will focus on 3 main topics, Tips, Themes and Plugins, we will build for each of these topics custom Posts and Taxonomies.</p>
<span id="The_Developers_environment"><h3>The Developer’s environment</h3></span>
<p>To build the new website in a test environment, we install <a title="BitNami WordPress Stack" href="http://bitnami.org/stack/wordpress" target="_blank">BitNami </a>and namely the WordPress stack (free download). BitNami creates an independent (Apache) server environment with MySQL server and installed WordPress, ready to use via our browser. If you are used to Firefox and Firebug, you will find it easy to customize your styles and designs.</p>
<p>Now we can access the WordPress Dashboard via the browser and the files using windows explorer.</p>
<p>We are ready to start working on our project. Please look forward to the next related post where we will start adding Semiomantics XO and start building our custom child theme.</p>
<p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/' rel='bookmark' title='XO Photo Press WordPress Theme'>XO Photo Press WordPress Theme</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/elegant-wordpress-by-semiomantics-101/' rel='bookmark' title='Elegant WordPress by Semiomantics 101'>Elegant WordPress by Semiomantics 101</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/' rel='bookmark' title='How to Customize your WordPress Typography'>How to Customize your WordPress Typography</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/' rel='bookmark' title='Semiomantics XO Transparent WordPress Drafts'>Semiomantics XO Transparent WordPress Drafts</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wordpress-personal-cms-and-blog/' rel='bookmark' title='WordPress Personal CMS and Blog'>WordPress Personal CMS and Blog</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis/how-to-build-a-custom-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Customizing CSS in WP Mobile Theme</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/customizing-css-in-wp-mobile-theme/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/customizing-css-in-wp-mobile-theme/#comments</comments>
		<pubDate>Tue, 01 May 2012 16:36:47 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design for Mobile Devices]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Customizing WP Mobile Theme]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22834</guid>
		<description><![CDATA[Common Changes This post lists some CSS snippets to customize WPTouch Pro. Remove the Page Title Area Note: When removing the page title area we recommend using a child theme’s stylesheet and applying the code below to its corresponding stylesheet, per the instructions on applying custom CSS. In the iPhone theme: In the iPad theme: Remove reflection on calendar icons and post-thumbnails Change the size of the Post Thumbnails     Change every instance of 46px to your desired size Remove rounded corners on Post Thumbnails Remove “Comments are closed” text when comments are disabled in WordPress p.nocomments, #respond { display:none !important; } Remove comments completely Remove comment # bubble Remove ‘breadcumb’ text in category and search pages Use custom color for the mobile header where #ffffff can be customized to suit. Remove “HelloBar” Related posts: XO Mobile Theme with WPTouch Pro Customizing WP Shop Theme Customizing Post Editing Best WP Business Theme Hosting South Africa Fun Theme
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/' rel='bookmark' title='XO Mobile Theme with WPTouch Pro'>XO Mobile Theme with WPTouch Pro</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/customizing-wp-shop-theme/' rel='bookmark' title='Customizing WP Shop Theme'>Customizing WP Shop Theme</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/customizing-post-editing/' rel='bookmark' title='Customizing Post Editing'>Customizing Post Editing</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/best-wp-business-theme-branding/' rel='bookmark' title='Best WP Business Theme'>Best WP Business Theme</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa-fun-theme/' rel='bookmark' title='Hosting South Africa Fun Theme'>Hosting South Africa Fun Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Common_Changes"><h2>Common Changes</h2></span>
<div class='toc wptoc'>
<h2>Contents</h2>
<ol class='toc-odd level-1'>
	<li>
		<a href="#Common_Changes">Common Changes</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#Remove_the_Page_Title_Area">Remove the Page Title Area</a>
			</li>
			<li>
				<a href="#Remove_reflection_on_calendar_icons_and_post-thumbnails">Remove reflection on calendar icons and post-thumbnails</a>
			</li>
			<li>
				<a href="#Change_the_size_of_the_Post_Thumbnails">Change the size of the Post Thumbnails</a>
			</li>
			<li>
				<a href="#Remove_rounded_corners_on_Post_Thumbnails">Remove rounded corners on Post Thumbnails</a>
			</li>
			<li>
				<a href="#Remove_Comments_are_closed_text_when_comments_are_disabled_in_WordPress">Remove “Comments are closed” text when comments are disabled in WordPress</a>
			</li>
			<li>
				<a href="#Remove_comments_completely">Remove comments completely</a>
			</li>
			<li>
				<a href="#Remove_comment__bubble">Remove comment # bubble</a>
			</li>
			<li>
				<a href="#Remove_breadcumb_text_in_category_and_search_pages">Remove ‘breadcumb’ text in category and search pages</a>
			</li>
			<li>
				<a href="#Use_custom_color_for_the_mobile_header">Use custom color for the mobile header</a>
			</li>
			<li>
				<a href="#Remove_HelloBar">Remove “HelloBar”</a>
			</li>
</ol>
</ol>
</ol>
</div>
<div class='wptoc-end'> </div>
<p>This post lists some CSS snippets to customize WPTouch Pro.</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/05/IMG_3696.png"><img class="alignnone size-large wp-image-22835" title="Semiomantics XO Mobile for WordPress" src="http://yorgonestoridis.com/wp-content/uploads/2012/05/IMG_3696-460x690.png" alt="Semiomantics XO Mobile for WordPress" width="460" height="690" /></a></p>
<span id="Remove_the_Page_Title_Area"><h3>Remove the Page Title Area</h3></span>
<p>Note: When removing the page title area we recommend using a child theme’s stylesheet and applying the code below to its corresponding stylesheet, per the instructions on applying custom CSS.</p>
<p>In the iPhone theme:</p>
<pre class="brush: php; title: ; notranslate">.page-title-area { display:none !important; }</pre>
<p>In the iPad theme:</p>
<pre class="brush: php; title: ; notranslate">.page .title-area {display: none;}</pre>
<span id="Remove_reflection_on_calendar_icons_and_post-thumbnails"><h3>Remove reflection on calendar icons and post-thumbnails</h3></span>
<pre class="brush: php; title: ; notranslate">.idevice .post .thumbnail-wrap { -webkit-box-reflect: none; }
.idevice .calendar-box { -webkit-box-reflect: none; }</pre>
</pre>
<span id="Change_the_size_of_the_Post_Thumbnails"><h3>Change the size of the Post Thumbnails</h3></span>
<p> </p>
<p> </p>
<p>Change every instance of 46px to your desired size</p>
<pre class="brush: php; title: ; notranslate">.post .thumbnail-wrap { height: 46px; width: 46px; } .post img.attachment-post-thumbnail { width: 46px; height: 46px; }</pre>
<span id="Remove_rounded_corners_on_Post_Thumbnails"><h3>Remove rounded corners on Post Thumbnails</h3></span>
<pre class="brush: php; title: ; notranslate">.post img.attachment-post-thumbnail { -webkit-mask-box-image: none; }</pre>
<span id="Remove_Comments_are_closed_text_when_comments_are_disabled_in_WordPress"><h3>Remove “Comments are closed” text when comments are disabled in WordPress</h3></span>
<p>p.nocomments, #respond { display:none !important; }</p>
<span id="Remove_comments_completely"><h3>Remove comments completely</h3></span>
<pre class="brush: php; title: ; notranslate">#respond, ol.commentlist, a.com-toggle { display: none !important; }</pre>
<span id="Remove_comment__bubble"><h3>Remove comment # bubble</h3></span>
<pre class="brush: php; title: ; notranslate">.comment-bubble { display:none !important; }</pre>
<span id="Remove_breadcumb_text_in_category_and_search_pages"><h3>Remove ‘breadcumb’ text in category and search pages</h3></span>
<pre class="brush: php; title: ; notranslate">.archive-text { display: none !important; }</pre>
<span id="Use_custom_color_for_the_mobile_header"><h3>Use custom color for the mobile header</h3></span>
<pre class="brush: php; title: ; notranslate">#header { background-color: #ffffff !important; }</pre>
<p>where #ffffff can be customized to suit.</p>
<span id="Remove_HelloBar"><h3>Remove “HelloBar”</h3></span>
<pre class="brush: php; title: ; notranslate">#hellobar-container, #hellobar-wrapper, #hellobar-pusher {display: none;} </pre>
<p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/' rel='bookmark' title='XO Mobile Theme with WPTouch Pro'>XO Mobile Theme with WPTouch Pro</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/customizing-wp-shop-theme/' rel='bookmark' title='Customizing WP Shop Theme'>Customizing WP Shop Theme</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/customizing-post-editing/' rel='bookmark' title='Customizing Post Editing'>Customizing Post Editing</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/best-wp-business-theme-branding/' rel='bookmark' title='Best WP Business Theme'>Best WP Business Theme</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa-fun-theme/' rel='bookmark' title='Hosting South Africa Fun Theme'>Hosting South Africa Fun Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/customizing-css-in-wp-mobile-theme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Eval base64 Hack Solutions</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/eval-base64-hack-solutions/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/eval-base64-hack-solutions/#comments</comments>
		<pubDate>Thu, 26 Apr 2012 17:06:43 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics Tutorial]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[eval base64]]></category>
		<category><![CDATA[Eval base64 Hack Solutions]]></category>
		<category><![CDATA[WordPress Hack]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22811</guid>
		<description><![CDATA[eval base64 on WordPress or other Sites WordPress and other CMS powered sites are often targets for hackers who mass-inject some code into php and or html files. What to look for The cases I came across so far showed a hack just before the closing body tag in form of a short script pointing to an external source. Also, in some cases I found some php file in the uploads folder (in WP the uploads folder should not contain any php files). Once the script executed, a long string starting something like this: is placed on php and/or htm/html files. This eval base64 encoded and injected PHP code will hit all php archives. How to get rid of the hack without destroying your site To start with: change your passwords (FTP and Admin). Make sure your site script WP and Plugins are updated. Check your footer.php (theme folder) and delete eventually the script added by the hack (or just load your backed up footer.php and replace the file). Check your uploads folder for php files and delete them. Check your plugins folder for unusual php files and as the case may be delete them. If you are not familiar [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/editorial/blog-master-class/how-to-blog-blog-master-class-editorial-yorgo-nestoridis/how-to-get-rid-of-eval-base64_decode-hack/' rel='bookmark' title='How to get rid of eval base64_decode Hack'>How to get rid of eval base64_decode Hack</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-tutorials/wordpress-eval-base64_decode-hack/' rel='bookmark' title='WordPress eval base64_decode Hack'>WordPress eval base64_decode Hack</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/upgrade-your-wordpress-in-5-seconds/' rel='bookmark' title='Upgrade your WordPress in 5 seconds'>Upgrade your WordPress in 5 seconds</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/ycademy-easter-contest-2/' rel='bookmark' title='Ycademy Easter Contest 2'>Ycademy Easter Contest 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-profile-picture-hack/' rel='bookmark' title='Facebook Profile Picture Hack'>Facebook Profile Picture Hack</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="eval_base64_on_WordPress_or_other_Sites"><h2>eval base64 on WordPress or other Sites</h2></span>
<p>WordPress and other CMS powered sites are often targets for hackers who mass-inject some code into php and or html files.</p>
<span id="What_to_look_for"><h3>What to look for</h3></span>
<p>The cases I came across so far showed a hack just before the closing body tag in form of a short script pointing to an external source. Also, in some cases I found some php file in the uploads folder (in WP the uploads folder should not contain any php files).</p>
<p>Once the script executed, a long string starting something like this:</p>
<pre class="brush: php; title: ; notranslate">

&lt;?php /**/ //eval(base64_decode(&quot;aWYoZ...
</pre>
<p>is placed on php and/or htm/html files. This eval base64 encoded and injected PHP code will hit all php archives.</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/04/wordpress-custom-theme-yorgo.jpg"><img class="alignnone size-large wp-image-22812" title="WordPress Theme Yorgo" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/wordpress-custom-theme-yorgo-460x345.jpg" alt="WordPress Theme Yorgo" width="460" height="345" /></a></p>
<span id="How_to_get_rid_of_the_hack_without_destroying_your_site"><h3>How to get rid of the hack without destroying your site</h3></span>
<p>To start with: change your passwords (FTP and Admin). Make sure your site script WP and Plugins are updated.</p>
<p>Check your footer.php (theme folder) and delete eventually the script added by the hack (or just load your backed up footer.php and replace the file).</p>
<p>Check your uploads folder for php files and delete them. Check your plugins folder for unusual php files and as the case may be delete them.</p>
<p>If you are not familiar with Ruby, PuTTY and Shell access, then there is a relatively simple solution available by running a php script from your root. The script will back-up the hacked files, replace the hack with another string and save the repaired file.</p>
<p>A second script can be used to delete the backed-up hacks once we are sure that all works fine.</p>
<p>These scripts have been developed by Sergi Rodrigues Rius and published on his spanish website. They work on the most common php CMS.</p>
<p>Download from <a title="Download" href="http://yorgonestoridis.com/download/search_and_replace.php.zip" target="_blank">HERE</a>.</p>
<p>Upload the search_and_replace.php into the root folder of your site and run it by opening the page in your browser.</p>
<p>Once you are sure all is working fine, run the second script (this can be done after a few days or weeks).</p>
<p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/editorial/blog-master-class/how-to-blog-blog-master-class-editorial-yorgo-nestoridis/how-to-get-rid-of-eval-base64_decode-hack/' rel='bookmark' title='How to get rid of eval base64_decode Hack'>How to get rid of eval base64_decode Hack</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-tutorials/wordpress-eval-base64_decode-hack/' rel='bookmark' title='WordPress eval base64_decode Hack'>WordPress eval base64_decode Hack</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/upgrade-your-wordpress-in-5-seconds/' rel='bookmark' title='Upgrade your WordPress in 5 seconds'>Upgrade your WordPress in 5 seconds</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/ycademy-easter-contest-2/' rel='bookmark' title='Ycademy Easter Contest 2'>Ycademy Easter Contest 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-profile-picture-hack/' rel='bookmark' title='Facebook Profile Picture Hack'>Facebook Profile Picture Hack</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/eval-base64-hack-solutions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Local Website Design</title>
		<link>http://yorgonestoridis.com/online-publishing/local-website-design/</link>
		<comments>http://yorgonestoridis.com/online-publishing/local-website-design/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 10:07:48 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Astir Beach]]></category>
		<category><![CDATA[Best Facebook Pages]]></category>
		<category><![CDATA[Blog Master Class]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Developments]]></category>
		<category><![CDATA[Facebook Pages]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Google +]]></category>
		<category><![CDATA[Google Top 10]]></category>
		<category><![CDATA[How to Build an Online Business]]></category>
		<category><![CDATA[How to Dominate Google Top 10]]></category>
		<category><![CDATA[Media Design]]></category>
		<category><![CDATA[Media Marketing Publishing]]></category>
		<category><![CDATA[Online Publishing]]></category>
		<category><![CDATA[Semiomantics Design]]></category>
		<category><![CDATA[Semiomantics Project Management]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Vouliagmeni]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design for Mobile Devices]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[WP Best Classifieds]]></category>
		<category><![CDATA[WP Best Destination]]></category>
		<category><![CDATA[How to build a Local Website]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22801</guid>
		<description><![CDATA[How to build a Local Website Go Local is the name of the game in 2011/12 and the success of bringing the global web developments back home is a trend of the time. First it was about tagging people, now we tag locations, be it on social networks such as Facebook or on Photo sites, such as Picasa or Flickr. Based on the fact that surfers search for and prefer local business to cross border transactions, social networks namely have built in the local tags and stimulate users to hook media and events to geographically tagged locations. How to dominate the local market? In order to dominate the local market, you need to assess the use of the internet your neighbors make; chances are that they mostly hang out on social media, search Google and use email. This is of course an extremely simplified view but it gives an indication about where we need to build high visibility. You also want to have an idea about how people access the net and websites; you will notice an increased use of mobile deices, which means that your content needs to be formatted and optimized  for desktops as well as for tablets [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/how-to-optimize-your-impact-on-social-and-mobile-networks/' rel='bookmark' title='How to Optimize your Impact on Social and Mobile Networks'>How to Optimize your Impact on Social and Mobile Networks</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/' rel='bookmark' title='Facebook Strategy with WordPress'>Facebook Strategy with WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/google-top-10-5/' rel='bookmark' title='Google Top 10 Dominate your Keyword 3'>Google Top 10 Dominate your Keyword 3</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/3-web-design-trends-in-2011/' rel='bookmark' title='3 Web Design Trends in 2011'>3 Web Design Trends in 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/' rel='bookmark' title='New Facebook Pages Publishing Concept'>New Facebook Pages Publishing Concept</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="How_to_build_a_Local_Website"><h2>How to build a Local Website</h2></span>
<div class='toc wptoc'>
<h2>Contents</h2>
<ol class='toc-odd level-1'>
	<li>
		<a href="#How_to_build_a_Local_Website">How to build a Local Website</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#How_to_dominate_the_local_market">How to dominate the local market?</a>
			</li>
			<li>
				<a href="#How_to_Dominate_Google_Top_10">How to Dominate Google Top 10</a>
			</li>
			<li>
				<a href="#How_to_Dominate_Social_Networks">How to Dominate Social Networks</a>
			</li>
			<li>
				<a href="#How_to_dominate_the_Mobile_Web">How to dominate the Mobile Web</a>
			</li>
			<li>
				<a href="#How_to_manage_a_Local_Presence_online">How to manage a Local Presence online</a>
			</li>
			<li>
				<a href="#How_to_monetize_a_Local_Website">How to monetize a Local Website</a>
			</li>
			<li>
				<a href="#How_to_get_readers_to_the_Local_Website">How to get readers to the Local Website</a>
			</li>
</ol>
</ol>
</ol>
</div>
<div class='wptoc-end'> </div>
<p>Go Local is the name of the game in 2011/12 and the success of bringing the global web developments back home is a trend of the time. First it was about tagging people, now we tag locations, be it on social networks such as Facebook or on Photo sites, such as Picasa or Flickr.</p>
<p>Based on the fact that surfers search for and prefer local business to cross border transactions, social networks namely have built in the local tags and stimulate users to hook media and events to geographically tagged locations.</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/04/astir-beach-4.jpg"><img class="alignnone size-large wp-image-22802" title="Vouliagmeni Local Footprints at Astir Beach" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/astir-beach-4-460x345.jpg" alt="Vouliagmeni Local Footprints at Astir Beach" width="460" height="345" /></a></p>
<span id="How_to_dominate_the_local_market"><h3>How to dominate the local market?</h3></span>
<p>In order to dominate the local market, you need to assess the use of the internet your neighbors make; chances are that they mostly hang out on social media, search Google and use email. This is of course an extremely simplified view but it gives an indication about where we need to build high visibility.</p>
<p>You also want to have an idea about how people access the net and websites; you will notice an increased use of mobile deices, which means that your content needs to be formatted and optimized  for desktops as well as for tablets and mobile phones.</p>
<p>Finally you may notice that surfers prefer visual content to text, which impacts on editing and publishing for multiple platforms.</p>
<span id="How_to_Dominate_Google_Top_10"><h3>How to Dominate Google Top 10</h3></span>
<p>In order to build high visibility on search returns, you need</p>
<ul>
<li>a local website.</li>
<li>make use of all possible Google Listings pertaining to the geographic location.</li>
<li>great content and consistent publishing to provide useful information and trigger conversation.</li>
</ul>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/04/astir-beach-3.jpg"><img class="alignnone size-large wp-image-22803" title="Astir Beach Vouliagmeni, Greece" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/astir-beach-3-460x345.jpg" alt="Astir Beach Vouliagmeni, Greece" width="460" height="345" /></a></p>
<span id="How_to_Dominate_Social_Networks"><h3>How to Dominate Social Networks</h3></span>
<p>To dominate social networks (Facebook, Google+, Twitter, LinkedIn) we need</p>
<ul>
<li>optimized profiles.</li>
<li>Facebook Pages.</li>
<li>a consistent flow of information to trigger attention and conversation.</li>
<li>an optimized set-up to assure traffic back to our websites (let the social networks work for us instead of the opposite).</li>
</ul>
<span id="How_to_dominate_the_Mobile_Web"><h3>How to dominate the Mobile Web</h3></span>
<p>To dominate the mobile web we need</p>
<ul>
<li>mobile versions of our websites (tablets and smartphones).</li>
<li>mobile search optimization.</li>
<li>ideally an App.</li>
<li>easy to use interactive functions.</li>
</ul>
<span id="How_to_manage_a_Local_Presence_online"><h3>How to manage a Local Presence online</h3></span>
<p>The answer is similar to managing a business online. There are three main elements I like to focus on:</p>
<ul>
<li>an optimized workflow to assure maximum productivity.</li>
<li>high quality content and content providers.</li>
<li>an integrated publishing network to hit all the important targets with per platform optimized content.</li>
</ul>
<p><a href="http://gardenroutepublishing.com/review/" target="_blank"><img class="alignnone size-large wp-image-22806" title="Local Website Theme for WordPress" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/local-website-2-460x345.jpg" alt="Local Website Theme for WordPress" width="460" height="345" /></a></p>
<span id="How_to_monetize_a_Local_Website"><h3>How to monetize a Local Website</h3></span>
<ul>
<li>Ads from Local Business.</li>
<li>Ads from external Business wanting to do business locally.</li>
<li>Eventually by integrating a local directory.</li>
<li>Eventually by integrating a real estate classifieds feature.</li>
<li>Eventually by integrating a service and products exchange.</li>
<li> … and more.</li>
</ul>
<span id="How_to_get_readers_to_the_Local_Website"><h3>How to get readers to the Local Website</h3></span>
<p>Just a few ideas:</p>
<ul>
<li>Talk about people.</li>
<li>Talk about events.</li>
<li>Talk about stories concerning the community.</li>
<li>Talk about Local Sports, Clubs, Associations.</li>
<li>Publish Pictures (people like to see their face and place).</li>
<li>Talk about local business.</li>
<li>Integrate a news wire from the major’s office.</li>
<li>Have a local Gossip column.</li>
<li>Let visitors contribute and discuss content.</li>
<li>Don’t forget rating.</li>
<li>Create competitions, contests, top 3 lists.</li>
<li>Exchange advertising space with local media to promote your site quickly an consistently.</li>
<li>Bring the conversation from social networks back to your site.</li>
<li>… and so much more!</li>
</ul>
<p>I hope this post helps your brainstorming when creating your local project. I will publish shortly a detailed project for my demo community, Vouliagmeni.</p>
<p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/how-to-optimize-your-impact-on-social-and-mobile-networks/' rel='bookmark' title='How to Optimize your Impact on Social and Mobile Networks'>How to Optimize your Impact on Social and Mobile Networks</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/' rel='bookmark' title='Facebook Strategy with WordPress'>Facebook Strategy with WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/google-top-10-5/' rel='bookmark' title='Google Top 10 Dominate your Keyword 3'>Google Top 10 Dominate your Keyword 3</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/3-web-design-trends-in-2011/' rel='bookmark' title='3 Web Design Trends in 2011'>3 Web Design Trends in 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/' rel='bookmark' title='New Facebook Pages Publishing Concept'>New Facebook Pages Publishing Concept</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/online-publishing/local-website-design/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ycademy Online Seminar Apri 2012</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 17:13:06 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Apple Touch Icons]]></category>
		<category><![CDATA[Best Facebook Pages]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Advertising]]></category>
		<category><![CDATA[Facebook MArketing]]></category>
		<category><![CDATA[Facebook Marketing Ycademy]]></category>
		<category><![CDATA[Facebook Online Seminar]]></category>
		<category><![CDATA[Facebook Optimization]]></category>
		<category><![CDATA[Facebook Pages]]></category>
		<category><![CDATA[Facebook Ycademy]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics Facebook Developments]]></category>
		<category><![CDATA[Semiomantics Mobile]]></category>
		<category><![CDATA[Semiomantics Web Development]]></category>
		<category><![CDATA[Semiomantics Ycademy]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Network Publishing]]></category>
		<category><![CDATA[Social Network Publishing Seminar]]></category>
		<category><![CDATA[Trainings Coaching and Seminars]]></category>
		<category><![CDATA[Web Design for Mobile Devices]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[Ycademy Online Seminar]]></category>
		<category><![CDATA[Mobile Facebook]]></category>
		<category><![CDATA[Mobile WordPress]]></category>
		<category><![CDATA[Mobile WordPress and Social Media]]></category>
		<category><![CDATA[Publishing for the Mobile Web]]></category>
		<category><![CDATA[Semiomantics Mobile Developments]]></category>
		<category><![CDATA[Semiomantics Mobile Publishing]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22772</guid>
		<description><![CDATA[Mobile WordPress and Social Media The fast evolution of the mobile web has created new needs for publishers, whereas the objective remains to integrate mobile web targets into an existing workflow and to optimize productivity with the help of automated conversion scripts and tools. What’s New on Mobile WordPress and Social Media At Semiomantics the starting point for our development is the most comprehensive conversion plugin, called WPTouch Pro. WPTouch has released its latest version end of March 2012 with some adjustments for iOS 5.1 and many other fixes and developments: * Added: Custom advertising options for iPad * Added: Simple caching of desktop functions.php * Added: Russian language file * Added: Automatic archiving of previous settings in wptouch-data directory * Added: Compatibility setting for BuddyPress Mobile AJAX support * Fixed: Changing user-agent matching that may have interfered with advertising in certain scenarios * Changed: Replaced include with locate_template in theme files, should allow child overrides of custom WPtouch Pro template files * Changed: Algorithm to reload settings; may have caused settings to be lost in a certain scenario * Updated: All translations based on 2.6 strings * Fixed: An issue with Register and Lost password links in Classic * [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/facebook-and-mobile-web-seminar-by-ycademy/' rel='bookmark' title='Facebook and Mobile Web Seminar by Ycademy'>Facebook and Mobile Web Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/' rel='bookmark' title='Ycademy Online Seminar January 2012'>Ycademy Online Seminar January 2012</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-may-2011/' rel='bookmark' title='Ycademy Online Seminar May 2011'>Ycademy Online Seminar May 2011</a></li>
<li><a href='http://yorgonestoridis.com/media-marketing-publishing/facebook-ycademy/' rel='bookmark' title='Facebook Online Seminar by Ycademy'>Facebook Online Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/' rel='bookmark' title='Facebook Strategy with WordPress'>Facebook Strategy with WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Mobile_WordPress_and_Social_Media"><h2>Mobile WordPress and Social Media</h2></span>
<div class='toc wptoc'>
<h2>Contents</h2>
<ol class='toc-odd level-1'>
	<li>
		<a href="#Mobile_WordPress_and_Social_Media">Mobile WordPress and Social Media</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#Whats_New_on_Mobile_WordPress_and_Social_Media">What’s New on Mobile WordPress and Social Media</a>
			</li>
			<li>
				<a href="#Why_to_use_advanced_Mobile_Web_Developments">Why to use advanced Mobile Web Developments</a>
			</li>
			<li>
				<a href="#The_Goal_of_Semiomantics_Developments">The Goal of Semiomantics Developments</a>
			</li>
		</ol>
	<li>
		<a href="#The_Goal_and_Agenda_of_the_Ycademy_April_Seminar">The Goal and Agenda of the Ycademy April Seminar</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#Mobile_Web">1. Mobile Web</a>
				<ol class='toc-odd level-3'>
					<li>
						<a href="#Build_a_Mobile_Child_Theme_for_your_Website.">Build a Mobile Child Theme for your Website.</a>
					</li>
					<li>
						<a href="#Build_OS_specific_Icons.">Build OS specific Icons.</a>
					</li>
					<li>
						<a href="#Build_a_Start_up_screen_image.">Build a Start up screen (image).</a>
					</li>
					<li>
						<a href="#Build_Mobile_specific_WP_3.0_menus.">Build Mobile specific WP 3.0 menus.</a>
					</li>
					<li>
						<a href="#Custom_Links_and_Icons.">Custom Links and Icons.</a>
					</li>
					<li>
						<a href="#Integrate_Advertizing:_Adsense_Admob_Custom_Ads.">Integrate Advertizing: Adsense, Admob, Custom Ads.</a>
					</li>
					<li>
						<a href="#Custom_Post_formats_for_the_Mobile_theme.">Custom Post formats for the Mobile theme.</a>
					</li>
					<li>
						<a href="#Test_Plugin_compatibility_and_create_your_mobile_plugin_menu.">Test Plugin compatibility and create your mobile plugin menu.</a>
					</li>
					<li>
						<a href="#Embed_media_for_Mobile_content_YouTube_Vimeo_or_self-hosted_standard_h.264_encoded_media.">Embed media for Mobile content, YouTube, Vimeo or self-hosted standard h.264 encoded media.</a>
					</li>
					<li>
						<a href="#Specifics_for_tablet_computing_namely_for_the_iPad_and_other_touch_tablets.">Specifics for tablet computing, namely for the iPad and other touch tablets.</a>
					</li>
				</ol>
			<li>
				<a href="#Mobile_Social_Networks">2. Mobile Social Networks</a>
			</li>
			<li>
				<a href="#Schedule">Schedule</a>
			</li>
			<li>
				<a href="#Materials">Materials</a>
			</li>
			<li>
				<a href="#Tickets_and_Discounts">Tickets and Discounts</a>
			</li>
</ol>
</ol>
</ol>
</div>
<div class='wptoc-end'> </div>
<p>The fast evolution of the mobile web has created new needs for publishers, whereas the objective remains to integrate mobile web targets into an existing workflow and to optimize productivity with the help of automated conversion scripts and tools.</p>
<span id="Whats_New_on_Mobile_WordPress_and_Social_Media"><h3>What’s New on Mobile WordPress and Social Media</h3></span>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/04/ycademy-april12.png"><img class="alignnone size-large wp-image-22773" title="Ycademy Online Seminar April 2012" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/ycademy-april12-460x213.png" alt="Ycademy Online Seminar April 2012" width="460" height="213" /></a></p>
<p>At Semiomantics the starting point for our development is the most comprehensive conversion plugin, called WPTouch Pro. WPTouch has released its latest version end of March 2012 with some adjustments for iOS 5.1 and many other fixes and developments:</p>
<ul>
<li>* Added: Custom advertising options for iPad</li>
</ul>
<ul>
<li>* Added: Simple caching of desktop functions.php</li>
</ul>
<ul>
<li>* Added: Russian language file</li>
</ul>
<ul>
<li>* Added: Automatic archiving of previous settings in wptouch-data directory</li>
</ul>
<ul>
<li>* Added: Compatibility setting for BuddyPress Mobile AJAX support</li>
</ul>
<ul>
<li>* Fixed: Changing user-agent matching that may have interfered with advertising in certain scenarios</li>
</ul>
<ul>
<li>* Changed: Replaced include with locate_template in theme files, should allow child overrides of custom WPtouch Pro template files</li>
</ul>
<ul>
<li>* Changed: Algorithm to reload settings; may have caused settings to be lost in a certain scenario</li>
</ul>
<ul>
<li>* Updated: All translations based on 2.6 strings</li>
</ul>
<ul>
<li>* Fixed: An issue with Register and Lost password links in Classic</li>
</ul>
<ul>
<li>* Fixed: Video issues with jwPlayer and other video sources and plugins</li>
</ul>
<ul>
<li>* Fixed: An issue which could cause the Share button not to show in Classic mobile theme</li>
</ul>
<ul>
<li>* Fixed: Improved appearance for Embedded Google maps</li>
</ul>
<ul>
<li>* Fixed: Issues with Tweet text encoding in sharing options for Classic</li>
</ul>
<ul>
<li>* Fixed: Search form issues with Skeleton theme</li>
</ul>
<ul>
<li>* Fixed: Admin issues for non-English languages</li>
</ul>
<ul>
<li>* Fixed: Issue where style.min.css was never loaded in child themes of Classic</li>
</ul>
<ul>
<li>* Fixed: Broken admin icons when SSL was enabled in the admin</li>
</ul>
<ul>
<li>* Added: Hungarian language</li>
</ul>
<ul>
<li>* Changed: Adjustments for memory management in Classic iPad theme</li>
</ul>
<ul>
<li>* Fixed: An issue with MapPress embeds</li>
</ul>
<ul>
<li>* Fixed: An issue with JetPack videos</li>
</ul>
<ul>
<li>* Fixed: An issue with Smart Youtube plugin videos</li>
</ul>
<ul>
<li>* Fixed: Issue with blank spaces in custom user agent string</li>
</ul>
<span id="Why_to_use_advanced_Mobile_Web_Developments"><h3>Why to use advanced Mobile Web Developments</h3></span>
<p>The above recent change-logs indicate the extent of considerations necessary for a serious development of an integrated mobile WP based solution. The reason for such complexity lies amongst others in the following:</p>
<ol>
<li>Increasing WordPress complexity and advanced plugin developments.</li>
<li>The multitude of mobile operating systems, browsers and devices of different sizes, display resolutions and aspect ratios.</li>
<li>The improved algorithms of Mobile Search.</li>
<li>The complexity of Semiomantics’ unbeaten optimization for conventional and mobile search.</li>
<li>The popularity of mobile and smart devices and the automated Mobile Search privileging mobile site versions.</li>
<li>The popularity of Social Networks and their ever changing integration parameters.</li>
</ol>

<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3634/' title='IMG_3634'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3634-200x150.png" class="attachment-thumbnail" alt="IMG_3634" title="IMG_3634" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3635/' title='IMG_3635'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3635-200x150.png" class="attachment-thumbnail" alt="IMG_3635" title="IMG_3635" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3636/' title='IMG_3636'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3636-200x150.png" class="attachment-thumbnail" alt="IMG_3636" title="IMG_3636" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3637/' title='IMG_3637'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3637-200x150.png" class="attachment-thumbnail" alt="IMG_3637" title="IMG_3637" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3638/' title='IMG_3638'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3638-200x150.png" class="attachment-thumbnail" alt="IMG_3638" title="IMG_3638" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3640/' title='IMG_3640'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3640-200x150.png" class="attachment-thumbnail" alt="IMG_3640" title="IMG_3640" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3641/' title='IMG_3641'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3641-200x150.png" class="attachment-thumbnail" alt="IMG_3641" title="IMG_3641" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3642/' title='IMG_3642'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3642-200x150.png" class="attachment-thumbnail" alt="IMG_3642" title="IMG_3642" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3643/' title='IMG_3643'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3643-200x150.png" class="attachment-thumbnail" alt="IMG_3643" title="IMG_3643" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3644/' title='IMG_3644'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3644-200x150.png" class="attachment-thumbnail" alt="IMG_3644" title="IMG_3644" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3646/' title='IMG_3646'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3646-200x150.png" class="attachment-thumbnail" alt="IMG_3646" title="IMG_3646" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3650/' title='IMG_3650'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3650-200x150.png" class="attachment-thumbnail" alt="IMG_3650" title="IMG_3650" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3651/' title='IMG_3651'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3651-200x150.png" class="attachment-thumbnail" alt="IMG_3651" title="IMG_3651" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3658/' title='IMG_3658'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3658-200x150.png" class="attachment-thumbnail" alt="IMG_3658" title="IMG_3658" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3659/' title='IMG_3659'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3659-200x150.png" class="attachment-thumbnail" alt="IMG_3659" title="IMG_3659" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3661/' title='IMG_3661'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3661-200x150.png" class="attachment-thumbnail" alt="IMG_3661" title="IMG_3661" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3662/' title='IMG_3662'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3662-200x150.png" class="attachment-thumbnail" alt="IMG_3662" title="IMG_3662" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3663/' title='IMG_3663'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3663-200x150.png" class="attachment-thumbnail" alt="IMG_3663" title="IMG_3663" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3664/' title='IMG_3664'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3664-200x150.png" class="attachment-thumbnail" alt="IMG_3664" title="IMG_3664" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3665/' title='IMG_3665'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3665-200x150.png" class="attachment-thumbnail" alt="IMG_3665" title="IMG_3665" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/512x512-ycademy-shop-1-5/' title='Ycademy April Seminar Ticket'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/512x512-ycademy-shop-1-200x150.png" class="attachment-thumbnail" alt="Ycademy April Seminar Ticket" title="Ycademy April Seminar Ticket" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/ycademy-april12/' title='Ycademy Online Seminar April 2012'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/ycademy-april12-200x150.png" class="attachment-thumbnail" alt="Ycademy Online Seminar April 2012" title="Ycademy Online Seminar April 2012" /></a>

<span id="The_Goal_of_Semiomantics_Developments"><h3>The Goal of Semiomantics Developments</h3></span>
<p>At Semiomantics we aim to make complex matters simple for day to day use. As an author or business, you don’t want to spend your time with technical issues or sitting logged into social networks to keep up with the continuous stream of information and exchanges. You want to do your business and be assured that your message gets spread broadly and that visitors requests are piped to proper destination without your intervention.</p>
<p>Semiomantics Developers are trained to build high end customer specific solutions assuring optimized productivity and workflow.</p>
<span id="The_Goal_and_Agenda_of_the_Ycademy_April_Seminar"><h2>The Goal and Agenda of the Ycademy April Seminar</h2></span>
<p>Based on the above, the Seminar will provide all necessary updates and upgrades for existing and new installations of high end websites, namely those built on Semiomantics XO and EVO frameworks.</p>
<p>During numerous Workshops we will knock participants personal sites into shape to comply with the highest standards.</p>
<span id="Mobile_Web"><h3>1. Mobile Web</h3></span>
<p>We will go step by step through the set-up and development of the customized version of each participants author site. This includes the following workshops:</p>
<ol>
<li>
<span id="Build_a_Mobile_Child_Theme_for_your_Website."><h4>Build a Mobile Child Theme for your Website.</h4></span>
</li>
<li>
<span id="Build_OS_specific_Icons."><h4>Build OS specific Icons.</h4></span>
</li>
<li>
<span id="Build_a_Start_up_screen_image."><h4>Build a Start up screen (image).</h4></span>
</li>
<li>
<span id="Build_Mobile_specific_WP_3.0_menus."><h4>Build Mobile specific WP 3.0 menus.</h4></span>
</li>
<li>
<span id="Custom_Links_and_Icons."><h4>Custom Links and Icons.</h4></span>
</li>
<li>
<span id="Integrate_Advertizing:_Adsense_Admob_Custom_Ads."><h4>Integrate Advertizing: Adsense, Admob, Custom Ads.</h4></span>
</li>
<li>
<span id="Custom_Post_formats_for_the_Mobile_theme."><h4>Custom Post formats for the Mobile theme.</h4></span>
</li>
<li>
<span id="Test_Plugin_compatibility_and_create_your_mobile_plugin_menu."><h4>Test Plugin compatibility and create your mobile plugin menu.</h4></span>
</li>
<li>
<span id="Embed_media_for_Mobile_content_YouTube_Vimeo_or_self-hosted_standard_h.264_encoded_media."><h4>Embed media for Mobile content, YouTube, Vimeo or self-hosted standard h.264 encoded media.</h4></span>
</li>
<li>
<span id="Specifics_for_tablet_computing_namely_for_the_iPad_and_other_touch_tablets."><h4>Specifics for tablet computing, namely for the iPad and other touch tablets.</h4></span>
</li>
</ol>
<span id="Mobile_Social_Networks"><h3>2. Mobile Social Networks</h3></span>
<p>We will focus on Facebook in particular. Mobile Facebook is quite restrictive; it is therefore important to learn about what is visible on mobile FB and what cannot be accessed, respectively, how we may work around some of these restrictions.</p>
<p>In fact: Mobile Facebook is quite disappointing, be it whether you access it via the App or the browser. Custom content on app driven canvas pages and page favorites don’t display! Even promoting their link on the wall will not trigger any display. There are some workarounds by using different browsers where you can modify browser settings and simulate a desktop browser, but that’s not a solution for the masses.</p>
<p>Facebook is not here to promote YOUR site but just to grab your content for it’s own purpose.</p>
<ul>
<li>We will show you how to work around the problem and take advantage of the FB App and Mobile Site to get most out of it. The goal is to achieve that Facebook works for you and not you for Facebook.</li>
</ul>
<ul>
<li>We will also come back to the desktop version of Facebook, showing how to build the most neutral and minimalist Facebook page for full and perfect control of all your content.</li>
</ul>
<span id="Schedule"><h3>Schedule</h3></span>
<p>The Ycademy Online Seminar will take place on April 28/29, 2012 starting daily as usual at 1 p.m. London Time and closing at 9 p.m. London time.</p>
<span id="Materials"><h3>Materials</h3></span>
<p>All materials and scripts are provided and included.</p>
<span id="Tickets_and_Discounts"><h3>Tickets and Discounts</h3></span>
<p>The cost for this seminar is $85; discounts as usual for Ycademy Pros (please mail Bianca at bianca(at)ycademy.com for the coupon code.</p>
<p>Click on the below image to get your ticket.</p>
<p><a href="http://hiod.com/shop/ycademy-online-seminar-tickets/ycademy-online-seminar/" target="_blank"><img class="alignnone size-large wp-image-22796" title="Ycademy April Seminar Ticket" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/512x512-ycademy-shop-1-460x460.png" alt="" width="460" height="460" /></a></p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/" title="mobile content caching strategies">mobile content caching strategies</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/" title="mobile developer seminars">mobile developer seminars</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/facebook-and-mobile-web-seminar-by-ycademy/' rel='bookmark' title='Facebook and Mobile Web Seminar by Ycademy'>Facebook and Mobile Web Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/' rel='bookmark' title='Ycademy Online Seminar January 2012'>Ycademy Online Seminar January 2012</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-may-2011/' rel='bookmark' title='Ycademy Online Seminar May 2011'>Ycademy Online Seminar May 2011</a></li>
<li><a href='http://yorgonestoridis.com/media-marketing-publishing/facebook-ycademy/' rel='bookmark' title='Facebook Online Seminar by Ycademy'>Facebook Online Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/' rel='bookmark' title='Facebook Strategy with WordPress'>Facebook Strategy with WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress 3.4 Beta</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 08:36:35 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Semiomantics EVO]]></category>
		<category><![CDATA[Semiomantics Web Development]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[Semiomantics EVO for WP 3.4]]></category>
		<category><![CDATA[Semiomantics XO for WordPress 3.4]]></category>
		<category><![CDATA[WordPress 3.4 Beta]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22757</guid>
		<description><![CDATA[WordPress 3.4 Beta Custom Headers and Backgrounds The release of WordPress 3.4 Beta raises a number of problemsquestions for theme designers in as much as Custom Headers and Custom Backgrounds are concerned. The implementation methods via add_custom_background() and add_custom_image_header() will be depreciated and replaced by a more powerful method via add_theme_support(). The impact for Semiomantics XO and EVO Due to the depreciation of the old calls, we will need to update the themes and make the modifications needed to take advantage of the new features provided by WordPress 3.4. The new theme versions will work with WP 3.4 minimum and must not be used with previous WP versions. Custom developments and child themes may need a special treatment, depending on the degree of customization. I will arrange for some developers calls or set up some tutorials in due course. For the time being I am testing WP 3.4 Beta to check backwards compatibility using our themes. I will keep you posted on results and updates.   Incoming search terms:wordpress 3 4custom backgrounds wordpress 3 4 backward compatiblewordpress 3 4 betawp beta 3 4Related posts: Semiomantics XO Transparent WordPress Drafts How to Customize your WordPress Typography WordPress Themes and Development Showcase [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/' rel='bookmark' title='Semiomantics XO Transparent WordPress Drafts'>Semiomantics XO Transparent WordPress Drafts</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/' rel='bookmark' title='How to Customize your WordPress Typography'>How to Customize your WordPress Typography</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-themes-and-development/' rel='bookmark' title='WordPress Themes and Development'>WordPress Themes and Development</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/' rel='bookmark' title='Showcase Portfolio Photo Theme for WordPress'>Showcase Portfolio Photo Theme for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/yorgoo-blaster/yorgoo-blaster-yb271-beta/' rel='bookmark' title='YORGOO Blaster YB271 Beta'>YORGOO Blaster YB271 Beta</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="WordPress_3.4_Beta_Custom_Headers_and_Backgrounds"><h2>WordPress 3.4 Beta Custom Headers and Backgrounds</h2></span>
<p>The release of WordPress 3.4 Beta raises a number of problemsquestions for theme designers in as much as Custom Headers and Custom Backgrounds are concerned.</p>
<p>The implementation methods via <a href="http://codex.wordpress.org/Function_Reference/add_custom_background"><code>add_custom_background()</code></a> and <a href="http://codex.wordpress.org/Function_Reference/add_custom_image_header"><code>add_custom_image_header()</code></a> will be depreciated and replaced by a more powerful method via <a href="http://codex.wordpress.org/Function_Reference/add_theme_support"><code>add_theme_support()</code></a>.</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/04/wordpress-tutorials2.jpg"><img class="alignnone size-large wp-image-22758" title="WordPress 3.4 Beta" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/wordpress-tutorials2-460x213.jpg" alt="WordPress 3.4 Beta" width="460" height="213" /></a></p>
<span id="The_impact_for_Semiomantics_XO_and_EVO"><h3>The impact for Semiomantics XO and EVO</h3></span>
<p>Due to the depreciation of the old calls, we will need to update the themes and make the modifications needed to take advantage of the new features provided by WordPress 3.4. The new theme versions will work with WP 3.4 minimum and must not be used with previous WP versions.</p>
<p>Custom developments and child themes may need a special treatment, depending on the degree of customization. I will arrange for some developers calls or set up some tutorials in due course. For the time being I am testing WP 3.4 Beta to check backwards compatibility using our themes.</p>
<p>I will keep you posted on results and updates.</p>
<p> </p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/" title="wordpress 3 4">wordpress 3 4</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/" title="custom backgrounds wordpress 3 4 backward compatible">custom backgrounds wordpress 3 4 backward compatible</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/" title="wordpress 3 4 beta">wordpress 3 4 beta</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/" title="wp beta 3 4">wp beta 3 4</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/' rel='bookmark' title='Semiomantics XO Transparent WordPress Drafts'>Semiomantics XO Transparent WordPress Drafts</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/' rel='bookmark' title='How to Customize your WordPress Typography'>How to Customize your WordPress Typography</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-themes-and-development/' rel='bookmark' title='WordPress Themes and Development'>WordPress Themes and Development</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/' rel='bookmark' title='Showcase Portfolio Photo Theme for WordPress'>Showcase Portfolio Photo Theme for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/yorgoo-blaster/yorgoo-blaster-yb271-beta/' rel='bookmark' title='YORGOO Blaster YB271 Beta'>YORGOO Blaster YB271 Beta</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Facebook Pages Publishing Concept</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/#comments</comments>
		<pubDate>Thu, 29 Mar 2012 12:15:15 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Best Facebook Pages]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Advertising]]></category>
		<category><![CDATA[Facebook Developments]]></category>
		<category><![CDATA[Facebook MArketing]]></category>
		<category><![CDATA[Facebook Optimization]]></category>
		<category><![CDATA[Media Marketing Publishing]]></category>
		<category><![CDATA[Online Publishing]]></category>
		<category><![CDATA[Publishing]]></category>
		<category><![CDATA[Publishing Online]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social Network Publishing]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Facebook Timeline Page Publishing]]></category>
		<category><![CDATA[New Facebook Pages Publishing Concept]]></category>
		<category><![CDATA[Semiomantics Publishing Concept]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22734</guid>
		<description><![CDATA[Facebook Page Publishing with New Timeline As from March 30, Facebook pages will change their look and features. I have presented the new options at last week-end’s Ycademy Seminar. In order to take advantage of the new features, companies, brands or people in general must adapt to the new format and can optionally expand visibility and interactivity using a well thought publishing concept. The concept I am talking about is the Semiomantics Facebook Publishing Concept. Semiomantics Facebook Publishing Concept Semiomantics has been focused on developing high performance scripts for online publishing since 2008. Originally the main target was SEO to reach Google Top 10 listings and to gain high visibility and traffic on and from search engines. Semiomantics main concern has always been to control and secure content and to make it available online in the customer’s own rights, rather than to entrust third party sites such as social networks with the content and letting them handle the publication. The second most important concern is productivity and an efficient workflow, allowing to edit and publish on one place only all content for the web (including the mobile web) and to channel it then to the different target locations, networks and [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/' rel='bookmark' title='Facebook Strategy with WordPress'>Facebook Strategy with WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/best-facebook-pages-2/' rel='bookmark' title='Best Facebook Pages'>Best Facebook Pages</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/facebook-marketing-2-2/' rel='bookmark' title='Facebook Marketing 2'>Facebook Marketing 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-optimization-for-facebook/' rel='bookmark' title='Semiomantics Optimization for Facebook'>Semiomantics Optimization for Facebook</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-for-facebook-fan-pages-with-fblaster/' rel='bookmark' title='WordPress for Facebook Fan Pages with FBlaster'>WordPress for Facebook Fan Pages with FBlaster</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Facebook_Page_Publishing_with_New_Timeline"><h2>Facebook Page Publishing with New Timeline</h2></span>
<div class='toc wptoc'>
<h2>Contents</h2>
<ol class='toc-odd level-1'>
	<li>
		<a href="#Facebook_Page_Publishing_with_New_Timeline">Facebook Page Publishing with New Timeline</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#Semiomantics_Facebook_Publishing_Concept">Semiomantics Facebook Publishing Concept</a>
			</li>
			<li>
				<a href="#The_Semiomantics_Publisher">The Semiomantics Publisher</a>
			</li>
			<li>
				<a href="#The_Facebook_Publishing_Concept">The Facebook Publishing Concept</a>
			</li>
</ol>
</ol>
</ol>
</div>
<div class='wptoc-end'> </div>
<p>As from March 30, Facebook pages will change their look and features. I have presented the new options at last week-end’s Ycademy Seminar. In order to take advantage of the new features, companies, brands or people in general must adapt to the new format and can optionally expand visibility and interactivity using a well thought publishing concept. The concept I am talking about is the Semiomantics Facebook Publishing Concept.</p>
<div id="attachment_22738" class="wp-caption alignnone" style="width: 470px"><a href="http://yorgonestoridis.com"><img class="size-large wp-image-22738" title="Semiomantics Facebook Publishing Concept" src="http://yorgonestoridis.com/wp-content/uploads/2012/03/semio1-460x170.png" alt="Semiomantics Facebook Publishing Concept" width="460" height="170" /></a><p class="wp-caption-text">Semiomantics Facebook Publishing Concept</p></div>
<span id="Semiomantics_Facebook_Publishing_Concept"><h3>Semiomantics Facebook Publishing Concept</h3></span>
<p>Semiomantics has been focused on developing high performance scripts for online publishing since 2008. Originally the main target was SEO to reach Google Top 10 listings and to gain high visibility and traffic on and from search engines.</p>
<p>Semiomantics main concern has always been to control and secure content and to make it available online in the customer’s own rights, rather than to entrust third party sites such as social networks with the content and letting them handle the publication. The second most important concern is productivity and an efficient workflow, allowing to edit and publish on one place only all content for the web (including the mobile web) and to channel it then to the different target locations, networks and sites.</p>
<p>The Semiomantics Facebook Publishing Concept is in line with Semiomantics proven SEO.</p>
<span id="The_Semiomantics_Publisher"><h3>The Semiomantics Publisher</h3></span>
<p>In the center of the concept we position the Semiomantics Publisher, a WordPress based website expanded with all necessary bells and whistles to communicate with Search Engines and Social Networks as well as with the Mobile Web.</p>
<p>The most popular base is <a title="Semiomantics XO" href="http://semiomantics.com" target="_blank">Semiomantics XO</a>, the semantic framework and theme developed since 2008. It is not what you add to Semiomantics XO but how you add it that makes the difference when it comes to plugins and add-on software. That’s why Semiomantics XO is mostly used for Customized Websites by professional Developers and Designers.</p>
<p>For the purpose of efficiently publishing to Facebook (and other social networks) Semiomantics has integrated, optimized  and further developed the best Facebook integration scripts out there, allowing to provide customers with an easy to use, homogeneous solution.</p>
<span id="The_Facebook_Publishing_Concept"><h3>The Facebook Publishing Concept</h3></span>
<p>Once expanded with Social Media Publishing scripts, the Semiomantics publishing framework provides custom taxonomies specially designed for FB Content creating, publishing and managing. The idea behind this concept is, that all content is published on our own website and when the Facebook page is called, the traffic hits our own site.</p>
<p>From the Dashboard we can set-up an unlimited number of such pages easily and quickly using the same editor as we use for WP dynamic posts or pages.</p>
<p>To get the pages hooked and deeply integrated into Facebook, we need to use the Facebook App and OpenGraph features. Don’t worry, it’s easy to handle once set up:-).</p>
<p>So, once we have created our FB Page content on our website, we create a Facebook App and then a Facebook Page. We link the App with our Website (from the Dashboard) and with the Facebook Page. Adding our App to Favorites on Facebook, we end up with a Favorites Tab on timeline (to the right below the cover image).</p>
<div id="attachment_22739" class="wp-caption alignnone" style="width: 470px"><a href="http://yorgonestoridis.com"><img class="size-large wp-image-22739" title="Facebook Timeline Page" src="http://yorgonestoridis.com/wp-content/uploads/2012/03/semio2-460x256.png" alt="Facebook Timeline Page" width="460" height="256" /></a><p class="wp-caption-text">Facebook Timeline Page</p></div>
<p>Facebook Timeline Pages let us display 3 Featured Tabs on the first line, the Photo tab being fixed and cannot be replaced. Using the small icon on the right of the tabs, the page reveals another 8 tabs for additional use and display of apps. There we will lodge our additional pages created on our Website.</p>
<p>We end up with a Facebook page with highly visible tabs leading to content on our website, be it a shop, images, videos, sliders or any other content. By interlinking the so created pages and apps we offer easy navigation for our Facebook readers and can provide all the content you would never want to entrust Facebook with or share a license with Facebook, like for example on your graphics, logos and other content. (See Facebook’s terms.)</p>
<p>The following post will detail the set-up and procedure.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/" title="facebook publisher integration">facebook publisher integration</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/" title="adding tabs to favorites on facebook timeline">adding tabs to favorites on facebook timeline</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/" title="facebook how publish to new fan page">facebook how publish to new fan page</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/" title="facebook page concept 2012">facebook page concept 2012</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/" title="how to edit favorites on facebook pages">how to edit favorites on facebook pages</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/" title="how to not publish timeline on facebook">how to not publish timeline on facebook</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/" title="publish from wordpress to new facebook page timeline">publish from wordpress to new facebook page timeline</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/" title="publishing wordpress on timeline">publishing wordpress on timeline</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/" title="static pages facebook timeline">static pages facebook timeline</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/' rel='bookmark' title='Facebook Strategy with WordPress'>Facebook Strategy with WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/best-facebook-pages-2/' rel='bookmark' title='Best Facebook Pages'>Best Facebook Pages</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/facebook-marketing-2-2/' rel='bookmark' title='Facebook Marketing 2'>Facebook Marketing 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-optimization-for-facebook/' rel='bookmark' title='Semiomantics Optimization for Facebook'>Semiomantics Optimization for Facebook</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-for-facebook-fan-pages-with-fblaster/' rel='bookmark' title='WordPress for Facebook Fan Pages with FBlaster'>WordPress for Facebook Fan Pages with FBlaster</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Showcase Portfolio Photo Theme for WordPress</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 08:09:04 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Elegant Web Design]]></category>
		<category><![CDATA[Elegant WordPress]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Online Seminar]]></category>
		<category><![CDATA[Photo Publishing]]></category>
		<category><![CDATA[Photo Website]]></category>
		<category><![CDATA[Sell Photos and Media Online]]></category>
		<category><![CDATA[Semiomantics Design]]></category>
		<category><![CDATA[Semiomantics Elegance]]></category>
		<category><![CDATA[Semiomantics EVO]]></category>
		<category><![CDATA[Semiomantics Evolution]]></category>
		<category><![CDATA[Semiomantics Facebook Developments]]></category>
		<category><![CDATA[Semiomantics Mobile]]></category>
		<category><![CDATA[Semiomantics Photo Gallery]]></category>
		<category><![CDATA[Semiomantics Shop]]></category>
		<category><![CDATA[Semiomantics Web Development]]></category>
		<category><![CDATA[Semiomantics Ycademy]]></category>
		<category><![CDATA[Social Network Publishing]]></category>
		<category><![CDATA[Web Design for Mobile Devices]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[WP Best Gallery]]></category>
		<category><![CDATA[WP Best Photo Theme]]></category>
		<category><![CDATA[WP Best Shop]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[Ycademy Online Seminar]]></category>
		<category><![CDATA[Best WordPress Photo Theme]]></category>
		<category><![CDATA[Best WP Photo Theme]]></category>
		<category><![CDATA[Best WP Portfolio]]></category>
		<category><![CDATA[EVO]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[WP Photo Ecommerce]]></category>
		<category><![CDATA[WP Showcase Theme]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22642</guid>
		<description><![CDATA[Media Focused Development for Professionals and Amateurs, The new Semiomantics EVO for WordPress sets new standards for beauty and excellent publishing paired with eCommerce.
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/' rel='bookmark' title='XO Photo Press WordPress Theme'>XO Photo Press WordPress Theme</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/' rel='bookmark' title='The 1001 Faces of Semiomantics XO'>The 1001 Faces of Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/glossy-wordpress-theme-development/' rel='bookmark' title='Glossy WordPress Theme Development'>Glossy WordPress Theme Development</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/ycademy-online-seminar-photo-publishing-with-evo-for-wordpress/' rel='bookmark' title='Ycademy Online Seminar Photo Publishing with Evo for WordPress'>Ycademy Online Seminar Photo Publishing with Evo for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-car-dealer-theme-for-wordpress/' rel='bookmark' title='Best Car Dealer Theme for WordPress'>Best Car Dealer Theme for WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Best_Portfolio_and_Photo_Custom_Theme:_Semiomantics_EVO"><h2>Best Portfolio and Photo Custom Theme: Semiomantics EVO</h2></span>
<p>WordPress offers a perfect backbone for Media Publishing and eCommerce on a single site.</p>
<p>Semiomantics Developments for WordPress assemble the best modules available to offer custom solutions to satisfy the needs of professionals. EVO is a theme base for custom design and development focusing namely on media producers, photographers, graphic and web designers.</p>
<span id="Semiomantics_EVO"><h3>Semiomantics EVO</h3></span>
<p>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/attachment/evo-1-2/' title='evo-1'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/evo-11-200x150.jpg" class="attachment-thumbnail" alt="evo-1" title="evo-1" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/attachment/evo-2-3/' title='evo-2'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/evo-22-200x150.jpg" class="attachment-thumbnail" alt="evo-2" title="evo-2" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/attachment/evo-screen-3/' title='evo-screen-3'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/evo-screen-3-200x150.jpg" class="attachment-thumbnail" alt="evo-screen-3" title="evo-screen-3" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/attachment/evo-screen-4/' title='evo-screen-4'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/evo-screen-4-200x150.jpg" class="attachment-thumbnail" alt="evo-screen-4" title="evo-screen-4" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/attachment/features-3/' title='features-3'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/features-3-200x150.jpg" class="attachment-thumbnail" alt="features-3" title="features-3" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/attachment/features-4/' title='features-4'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/features-4-200x150.jpg" class="attachment-thumbnail" alt="features-4" title="features-4" /></a>
<br />
Semiomantics EVO is based and inspired by the work of the best designers and developers out there who take advantage of the latest developments of WordPress, HTML5, CSS3, Java, Ajax and the mobile web.</p>
<p>Code and Scripts have been adapted and modified to satisfy Semiomantics’ highest standards of optimization for excellent publishing, targeting Search Engines and Social Networks.</p>
<p>Semiomantics EVO replaces the flash template Semiomantics Evo and constitutes a second cord on Semiomantics Arc.</p>
<span id="Semiomantics_Developments"><h3>Semiomantics Developments</h3></span>
<p>The recent release of XO Edition 2012 remains the blockbuster product of Semiomantics in 2012; however we are working on a new XO which will replace XO 12. A new architecture will allow to eliminate some of the heavy plugins we are using at present with XO namely to satisfy the standards of mobile development.</p>
<span id="Shoot_Share_Sell"><h3>Shoot, Share, Sell</h3></span>
<p>Semiomantics EVO is the ideal platform for high quality editing, media publishing and eCommerce. Semiomantics Developers and Designers are invited to join the <a title="Ycademy Online Seminar: Semiomantics EVO" href="http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/ycademy-online-seminar-photo-publishing-with-evo-for-wordpress/" target="_blank">Ycademy February Online Seminar </a>which is held this coming week-end.</p>
<p>Shoot Images and Videos with your camera or mobile device, load them to your EVO (can be done from the mobile device directly) and let EVO share your content with your friends and acquaintances on Social Networks without losing the control over your media or products. The shop is easily accessible, fully integrated and can also be added to your Facebook page for example.</p>
<p>Look out for more soon.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/" title="showcase portfolio">showcase portfolio</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/" title="wordpress photography themes">wordpress photography themes</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/' rel='bookmark' title='XO Photo Press WordPress Theme'>XO Photo Press WordPress Theme</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/' rel='bookmark' title='The 1001 Faces of Semiomantics XO'>The 1001 Faces of Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/glossy-wordpress-theme-development/' rel='bookmark' title='Glossy WordPress Theme Development'>Glossy WordPress Theme Development</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/ycademy-online-seminar-photo-publishing-with-evo-for-wordpress/' rel='bookmark' title='Ycademy Online Seminar Photo Publishing with Evo for WordPress'>Ycademy Online Seminar Photo Publishing with Evo for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-car-dealer-theme-for-wordpress/' rel='bookmark' title='Best Car Dealer Theme for WordPress'>Best Car Dealer Theme for WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ycademy Online Seminar Photo Publishing with Evo for WordPress</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/ycademy-online-seminar-photo-publishing-with-evo-for-wordpress/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/ycademy-online-seminar-photo-publishing-with-evo-for-wordpress/#comments</comments>
		<pubDate>Sun, 19 Feb 2012 09:37:20 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Online Publishing]]></category>
		<category><![CDATA[Online Seminar]]></category>
		<category><![CDATA[Photo Publishing]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[Publishing]]></category>
		<category><![CDATA[Publishing Images]]></category>
		<category><![CDATA[Publishing Online]]></category>
		<category><![CDATA[Semantic Publishing]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics EVO]]></category>
		<category><![CDATA[Web Master Training]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[WP Best Photo Theme]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[Evo Theme for WordPress]]></category>
		<category><![CDATA[Ycademy Online Seminar]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22622</guid>
		<description><![CDATA[Semiomantics EVO Developer Theme 2 years ago, about at the same time of the year, we have built Evo, an Action script driven Flash photo and portfolio website. This time we will make use of HTML5, CSS3 and Java Script to customize Semiomantics EVO, a Semiomantics development for Developers.    Semiomantics Evo Flash is not anymore a smart option for development for as long as Apple mobile devices are as popular as they are and for as long as mobile Apple devices will not display Flash. Therefore we have been looking for an alternative to produce smashing and eye-catching sites based on HTML5. Of course the good old Evo Flash driven sites still look great. As a lot of work has been put into them we will try to use namely all the edited images and footage in the new EVO version.  Semiomantics EVO Version 2012 The biggest changes are: EVO is now powered by WordPress EVO does not use any Flash but is a responsive HTML5, CSS3 and Java script theme. The new EVO assembles the ultimate in WordPress design and features for modern media display. Ideal for photographers, EVO features not less than 6 different Gallery Types. Galleries [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-publishing-seminar-2/' rel='bookmark' title='Ycademy Online Publishing Seminar'>Ycademy Online Publishing Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/ycademy-online-publishing-seminar/' rel='bookmark' title='Ycademy Online Publishing Seminar'>Ycademy Online Publishing Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/' rel='bookmark' title='Ycademy Online Seminar January 2012'>Ycademy Online Seminar January 2012</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-march-2011/' rel='bookmark' title='Ycademy Online Seminar March 2011'>Ycademy Online Seminar March 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-may-2011/' rel='bookmark' title='Ycademy Online Seminar May 2011'>Ycademy Online Seminar May 2011</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Semiomantics_EVO_Developer_Theme"><h2>Semiomantics EVO Developer Theme</h2></span>
<p>2 years ago, about at the same time of the year, we have built Evo, an Action script driven Flash photo and portfolio website.</p>
<p>This time we will make use of HTML5, CSS3 and Java Script to customize Semiomantics EVO, a Semiomantics development for Developers.</p>
<p><img class="alignnone size-full wp-image-22630" title="EVO Screenshot" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/screenshot.png" alt="EVO Screenshot" width="300" height="225" />   <img class="size-full wp-image-22632 alignnone" title="EVO Screenshot Semio" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/screenshot-semio1.png" alt="EVO Screenshot Semio" width="300" height="225" /></p>
<span id="Semiomantics_Evo"><h3>Semiomantics Evo</h3></span>
<p>Flash is not anymore a smart option for development for as long as Apple mobile devices are as popular as they are and for as long as mobile Apple devices will not display Flash. Therefore we have been looking for an alternative to produce smashing and eye-catching sites based on HTML5.</p>
<p>Of course the good old Evo Flash driven sites still look great. As a lot of work has been put into them we will try to use namely all the edited images and footage in the new EVO version.</p>
<div id="attachment_22623" class="wp-caption alignnone" style="width: 1092px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/02/beach.jpg"><img class="size-full wp-image-22623" title="Semiomantics Evo Flash Version 2009" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/beach.jpg" alt="Semiomantics Evo Flash Version 2009" width="1082" height="600" /></a><p class="wp-caption-text">Semiomantics Evo Flash Version 2009</p></div>
<div id="attachment_22624" class="wp-caption alignnone" style="width: 970px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/02/evoscreen2.jpg"><img class="size-full wp-image-22624" title="Semiomantics Evo Flash Version 2009" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/evoscreen2.jpg" alt="Semiomantics Evo Flash Version 2009" width="960" height="600" /></a><p class="wp-caption-text">Semiomantics Evo Flash Version 2009</p></div>
<span id="Semiomantics_EVO_Version_2012"><h3> Semiomantics EVO Version 2012</h3></span>
<p>The biggest changes are:</p>
<ul>
<li>EVO is now powered by WordPress</li>
<li>EVO does not use any Flash but is a responsive HTML5, CSS3 and Java script theme.</li>
</ul>
<p>The new EVO assembles the ultimate in WordPress design and features for modern media display. Ideal for photographers, EVO features not less than 6 different Gallery Types. Galleries can be displayed most anywhere and the number is unlimited.</p>
<p>EVO can also display EXIF and location data.</p>
<p>The high resolution background slider will assure clean display also beyond resolutions of 2500 px equivalent.</p>
<p>Custom sidebars for pages and categories.</p>
<p>Finally: the script is eCommerce ready!</p>
<div id="attachment_22626" class="wp-caption alignnone" style="width: 1210px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/02/evo-1.jpg"><img class="size-full wp-image-22626" title="Semiomantics EVO 2012 Edition" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/evo-1.jpg" alt="Semiomantics EVO 2012 Edition" width="1200" height="620" /></a><p class="wp-caption-text">Semiomantics EVO 2012 Developer Edition</p></div>
<div id="attachment_22628" class="wp-caption alignnone" style="width: 1210px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/02/evo-21.jpg"><img class="size-full wp-image-22628" title="Semiomantics EVO 2012 Edition" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/evo-21.jpg" alt="Semiomantics EVO 2012 Edition" width="1200" height="609" /></a><p class="wp-caption-text">Semiomantics EVO 2012 Developer Edition Light</p></div>
<span id="Goals_of_the_Seminar"><h3>Goals of the Seminar</h3></span>
<p>Become familiar with a new generation WordPress Theme and develop on the given bases a personal template for further customization.</p>
<p>Learn how to replace the existing Evo sites with the WordPress based responsive EVO.</p>
<p>(More to come.)</p>
<span id="Materials"><h3>Materials</h3></span>
<p>Licensed Software is provided.</p>
<p>To build the new site, add a sub-domain to your main site (author blog) and call it for example media, photo or portfolio or similar. (We will discuss this at the pre-seminar call on Tuesday February 21, 2012.</p>
<span id="Tickets"><h3>Tickets</h3></span>
<p>Ticket price $85, the usual discounts for Ycademy Pros apply. Please ask Bianca for the discount code: bianca(at)ycademy.com.</p>
<div id="attachment_22629" class="wp-caption alignnone" style="width: 460px"><a title="HIOD Shop" href="http://hiod.com/shop/ycademy-online-seminar-tickets/ycademy-online-seminar-february-2012/" rel="me" target="_blank"><img class="size-full wp-image-22629 " title="Ycademy Online Seminar Tickets" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/products-seminars.png" alt="Ycademy Online Seminar Tickets" width="450" height="335" /></a><p class="wp-caption-text">Click to Get your Ticket</p></div>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/ycademy-online-seminar-photo-publishing-with-evo-for-wordpress/" title="online seminars wordpress theme">online seminars wordpress theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/ycademy-online-seminar-photo-publishing-with-evo-for-wordpress/" title="seminar photo">seminar photo</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-publishing-seminar-2/' rel='bookmark' title='Ycademy Online Publishing Seminar'>Ycademy Online Publishing Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/ycademy-online-publishing-seminar/' rel='bookmark' title='Ycademy Online Publishing Seminar'>Ycademy Online Publishing Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/' rel='bookmark' title='Ycademy Online Seminar January 2012'>Ycademy Online Seminar January 2012</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-march-2011/' rel='bookmark' title='Ycademy Online Seminar March 2011'>Ycademy Online Seminar March 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-may-2011/' rel='bookmark' title='Ycademy Online Seminar May 2011'>Ycademy Online Seminar May 2011</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/ycademy-online-seminar-photo-publishing-with-evo-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Happy Valentine</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/happy-valentine/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/happy-valentine/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 08:39:13 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Blog Master Class]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics Design]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[yorgo Design]]></category>
		<category><![CDATA[Custom]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Happy]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Nestoridis]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Semiomantics XO for WordPress]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Valentine]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[XO Theme]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22586</guid>
		<description><![CDATA[Enjoy your Valentine!

Related posts:
Happy New Year After Effects
How to Customize your WordPress Typography
12 Principles of Animation with After Effects

Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/happy-valentine-gals-and-guys/' rel='bookmark' title='Happy Valentine Gals and Guys'>Happy Valentine Gals and Guys</a></li>
<li><a href='http://yorgonestoridis.com/design/happy-new-year-after-effects/' rel='bookmark' title='Happy New Year After Effects'>Happy New Year After Effects</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/' rel='bookmark' title='How to Customize your WordPress Typography'>How to Customize your WordPress Typography</a></li>
<li><a href='http://yorgonestoridis.com/design/happy-new-year-design/' rel='bookmark' title='Happy New Year'>Happy New Year</a></li>
<li><a href='http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/' rel='bookmark' title='12 Principles of Animation with After Effects'>12 Principles of Animation with After Effects</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Enjoy your Valentine!</p>
<p>Related posts:<br />
Happy New Year After Effects<br />
How to Customize your WordPress Typography<br />
12 Principles of Animation with After Effects</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/happy-valentine/" title="renaldo ricketts">renaldo ricketts</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/happy-valentine-gals-and-guys/' rel='bookmark' title='Happy Valentine Gals and Guys'>Happy Valentine Gals and Guys</a></li>
<li><a href='http://yorgonestoridis.com/design/happy-new-year-after-effects/' rel='bookmark' title='Happy New Year After Effects'>Happy New Year After Effects</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/' rel='bookmark' title='How to Customize your WordPress Typography'>How to Customize your WordPress Typography</a></li>
<li><a href='http://yorgonestoridis.com/design/happy-new-year-design/' rel='bookmark' title='Happy New Year'>Happy New Year</a></li>
<li><a href='http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/' rel='bookmark' title='12 Principles of Animation with After Effects'>12 Principles of Animation with After Effects</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/happy-valentine/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Customize your WordPress Typography</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 18:32:49 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Elegant Web Design]]></category>
		<category><![CDATA[Elegant WordPress]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[Best WordPress typography]]></category>
		<category><![CDATA[Semiomantics XO typography]]></category>
		<category><![CDATA[Typography on WordPress]]></category>
		<category><![CDATA[YorgoLive Calls]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22575</guid>
		<description><![CDATA[Basic CSS3 to Customize your WordPress Theme With the increasing browser compatibility of CSS3, additional customization of websites is in the reach of most anyone (Even a Monkey can do it, according to Nikos Advertizopoulos …). Tonight we will start with a series of calls to become familiar with the possibilities arising from the use of CSS3 on WordPress to improve typography and font styles. You may follow the progress of the work at the Ycademy Demo Site which features the Semiomantics XO Theme. Looking forward to seeing you on YorgoLive tonight. Incoming search terms:wordpress Typographycustom typography wordpresshow to customize typographyhow to customize your wordpress teamtypography customization wordpresstypography wordpress 2012Related posts: How to Customize WordPress 2 How to Customize WordPress Semiomantics XO Transparent WordPress Drafts Customize WordPress with Semiomantics XO XO Photo Press WordPress Theme
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-customize-semiomantics-thesis/' rel='bookmark' title='How to Customize WordPress 2'>How to Customize WordPress 2</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-customize-wordpress/' rel='bookmark' title='How to Customize WordPress'>How to Customize WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/' rel='bookmark' title='Semiomantics XO Transparent WordPress Drafts'>Semiomantics XO Transparent WordPress Drafts</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/customize-wordpress-with-semiomantics-xo/' rel='bookmark' title='Customize WordPress with Semiomantics XO'>Customize WordPress with Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/' rel='bookmark' title='XO Photo Press WordPress Theme'>XO Photo Press WordPress Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Basic_CSS3_to_Customize_your_WordPress_Theme"><h2>Basic CSS3 to Customize your WordPress Theme</h2></span>
<p>With the increasing browser compatibility of CSS3, additional customization of websites is in the reach of most anyone (Even a Monkey can do it, according to Nikos Advertizopoulos …). Tonight we will start with a series of calls to become familiar with the possibilities arising from the use of CSS3 on WordPress to improve typography and font styles.</p>
<p>You may follow the progress of the work at the<a title="Custom Typography on wordPress" href="http://typography.ycademy.net" target="_blank"> Ycademy Demo Site</a> which features the Semiomantics XO Theme.</p>
<p><img class="alignnone size-large wp-image-22576" title="Typography on WordPress" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/typography-slide-460x213.png" alt="Typography on WordPress" width="460" height="213" /></p>
<p>Looking forward to seeing you on<a title="Daily Online Trainings Ycademy" href="http://yorgolive.com" target="_blank"> YorgoLive</a> tonight.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/" title="wordpress Typography">wordpress Typography</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/" title="custom typography wordpress">custom typography wordpress</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/" title="how to customize typography">how to customize typography</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/" title="how to customize your wordpress team">how to customize your wordpress team</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/" title="typography customization wordpress">typography customization wordpress</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/" title="typography wordpress 2012">typography wordpress 2012</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-customize-semiomantics-thesis/' rel='bookmark' title='How to Customize WordPress 2'>How to Customize WordPress 2</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-customize-wordpress/' rel='bookmark' title='How to Customize WordPress'>How to Customize WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/' rel='bookmark' title='Semiomantics XO Transparent WordPress Drafts'>Semiomantics XO Transparent WordPress Drafts</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/customize-wordpress-with-semiomantics-xo/' rel='bookmark' title='Customize WordPress with Semiomantics XO'>Customize WordPress with Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/' rel='bookmark' title='XO Photo Press WordPress Theme'>XO Photo Press WordPress Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Semiomantics XO Transparent WordPress Drafts</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 11:19:44 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Global The Brand]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WP Best Business Theme]]></category>
		<category><![CDATA[Best WordPress Theme]]></category>
		<category><![CDATA[Custom WP Theme]]></category>
		<category><![CDATA[Transparent Custom Theme]]></category>
		<category><![CDATA[Transparent WordPress]]></category>
		<category><![CDATA[Transparent WordPress XO Theme]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22562</guid>
		<description><![CDATA[Transparent WordPress Custom Theme Playing with the XO Theme Version 3.3.x from Semiomantics and CSS3, I notice how easy it is for most anyone to customize the XO Theme by adding transparencies and other CSS3 elements. Here below you find some drafts. You may visit the test site from : http://globalthebrand.com. Transparent WordPress Gallery Scripts and Plug-ins On the test site we use the Semiomantics Widgets and Theme Handler plug-in as well as a modified Supersized plug-in; the latter needs some more work to make it more responsive. Also we use TubePress which behaves fine also on mobile. The Theme is Semiomantics XO with 3 custom child-themes; any theme can be associated with any page, post, category, tag or sidebar.       Incoming search terms:xo theme wordpresstheme blogtheme wordpress typographyxo wordpress themewordpress semiomanticswindows 8 theme for wordpresswordpress transpert themewordpress transparent responsive themewordpress theme windows 8transparent wordpress theme cssRelated posts: Transparent WordPress Semiomantics XO Transparent WordPress Theme Design The 1001 Faces of Semiomantics XO Sober WordPress with Semiomantics XO XO Photo Press WordPress Theme
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-semiomantics-xo/' rel='bookmark' title='Transparent WordPress Semiomantics XO'>Transparent WordPress Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-theme-design/' rel='bookmark' title='Transparent WordPress Theme Design'>Transparent WordPress Theme Design</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/' rel='bookmark' title='The 1001 Faces of Semiomantics XO'>The 1001 Faces of Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/sober-wordpress-with-semiomantics-xo/' rel='bookmark' title='Sober WordPress with Semiomantics XO'>Sober WordPress with Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/' rel='bookmark' title='XO Photo Press WordPress Theme'>XO Photo Press WordPress Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Transparent_WordPress_Custom_Theme"><h2>Transparent WordPress Custom Theme</h2></span>
<p>Playing with the XO Theme Version 3.3.x from Semiomantics and CSS3, I notice how easy it is for most anyone to customize the XO Theme by adding transparencies and other CSS3 elements. Here below you find some drafts. You may visit the test site from : <a title="Global The Brand Demo Transparent WordPress Theme" href="http://globalthebrand.com" target="_blank">http://globalthebrand.com</a>.</p>
<span id="Transparent_WordPress_Gallery"><h3>Transparent WordPress Gallery</h3></span>

<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-1/' title='XO Theme Archive'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-1-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Archive" title="XO Theme Archive" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-8/' title='XO Theme Blog Home 3'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-8-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Blog Home 3" title="XO Theme Blog Home 3" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-4/' title='XO Theme Blog Home Layout'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-4-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Blog Home Layout" title="XO Theme Blog Home Layout" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-5/' title='XO Theme Blog Home Layout 2'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-5-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Blog Home Layout 2" title="XO Theme Blog Home Layout 2" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-6/' title='XO Theme Front Page'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-6-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Front Page" title="XO Theme Front Page" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-7/' title='XO Theme Front Page 2'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-7-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Front Page 2" title="XO Theme Front Page 2" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-3/' title='XO Theme Fullscreen Slider'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-3-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Fullscreen Slider" title="XO Theme Fullscreen Slider" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens9/' title='XO Theme Presentation Slider'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens9-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Presentation Slider" title="XO Theme Presentation Slider" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-2/' title='XO Theme Video Gallery'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-2-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Video Gallery" title="XO Theme Video Gallery" /></a>

<span id="Scripts_and_Plug-ins"><h3>Scripts and Plug-ins</h3></span>
<p>On the test site we use the Semiomantics Widgets and Theme Handler plug-in as well as a modified Supersized plug-in; the latter needs some more work to make it more responsive. Also we use TubePress which behaves fine also on mobile.</p>
<p>The Theme is <a title="Semiomantics XO - by Semiomantics" href="http://semiomantics.com" target="_blank">Semiomantics XO</a> with 3 custom child-themes; any theme can be associated with any page, post, category, tag or sidebar.</p>
<p> </p>
<p> </p>
<p> </p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="xo theme wordpress">xo theme wordpress</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="theme blog">theme blog</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="theme wordpress typography">theme wordpress typography</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="xo wordpress theme">xo wordpress theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="wordpress semiomantics">wordpress semiomantics</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="windows 8 theme for wordpress">windows 8 theme for wordpress</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="wordpress transpert theme">wordpress transpert theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="wordpress transparent responsive theme">wordpress transparent responsive theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="wordpress theme windows 8">wordpress theme windows 8</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="transparent wordpress theme css">transparent wordpress theme css</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-semiomantics-xo/' rel='bookmark' title='Transparent WordPress Semiomantics XO'>Transparent WordPress Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-theme-design/' rel='bookmark' title='Transparent WordPress Theme Design'>Transparent WordPress Theme Design</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/' rel='bookmark' title='The 1001 Faces of Semiomantics XO'>The 1001 Faces of Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/sober-wordpress-with-semiomantics-xo/' rel='bookmark' title='Sober WordPress with Semiomantics XO'>Sober WordPress with Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/' rel='bookmark' title='XO Photo Press WordPress Theme'>XO Photo Press WordPress Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The 1001 Faces of Semiomantics XO</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 11:31:43 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Elegant WordPress]]></category>
		<category><![CDATA[Online Seminar]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Publishing]]></category>
		<category><![CDATA[Publishing Online]]></category>
		<category><![CDATA[Semantic Publishing]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics Mobile]]></category>
		<category><![CDATA[Semiomantics Project Management]]></category>
		<category><![CDATA[Semiomantics Web Development]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Semiomantics Ycademy]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Network Publishing]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[WP Best Business Theme]]></category>
		<category><![CDATA[WP Best Newspaper Theme]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[Ycademy Online Seminar]]></category>
		<category><![CDATA[Best WordPress Theme]]></category>
		<category><![CDATA[Responsive Theme]]></category>
		<category><![CDATA[XO Theme for WordPress]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22536</guid>
		<description><![CDATA[XO for WordPress is a responsive, flexible and highly customizable Theme for high performance and excellence in publishing. Developed by Semiomantics since 2007, the XO is mainly used for custom High End sites. A DIY version is available since 2011 at http://semiomantics.com. News are published to Facebook at http://facebook.com/semiomantics.
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-blog/' rel='bookmark' title='Semiomantics XO Blog'>Semiomantics XO Blog</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/' rel='bookmark' title='Facebook Strategy with WordPress'>Facebook Strategy with WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/' rel='bookmark' title='Ycademy Online Seminar January 2012'>Ycademy Online Seminar January 2012</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/semiomantics-xo-2010-edition/' rel='bookmark' title='Semiomantics XO 2010 Edition'>Semiomantics XO 2010 Edition</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/wordpress-shop-version-3-by-semiomantics/' rel='bookmark' title='WordPress Shop Version 3 by Semiomantics'>WordPress Shop Version 3 by Semiomantics</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="New_Semiomantics_XO_Theme_for_WordPress"><h2>New Semiomantics XO Theme for WordPress</h2></span>

<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens1/' title='xo12screens1'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens1-200x150.jpg" class="attachment-thumbnail" alt="xo12screens1" title="xo12screens1" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens10/' title='xo12screens10'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens10-200x150.jpg" class="attachment-thumbnail" alt="xo12screens10" title="xo12screens10" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens2/' title='xo12screens2'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens2-200x150.jpg" class="attachment-thumbnail" alt="xo12screens2" title="xo12screens2" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens3/' title='xo12screens3'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens3-200x150.jpg" class="attachment-thumbnail" alt="xo12screens3" title="xo12screens3" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens4/' title='xo12screens4'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens4-200x150.jpg" class="attachment-thumbnail" alt="xo12screens4" title="xo12screens4" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens5/' title='xo12screens5'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens5-200x150.jpg" class="attachment-thumbnail" alt="xo12screens5" title="xo12screens5" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens6/' title='xo12screens6'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens6-200x150.jpg" class="attachment-thumbnail" alt="xo12screens6" title="xo12screens6" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens7/' title='xo12screens7'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens7-200x150.jpg" class="attachment-thumbnail" alt="xo12screens7" title="xo12screens7" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens9/' title='xo12screens9'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens9-200x150.jpg" class="attachment-thumbnail" alt="xo12screens9" title="xo12screens9" /></a>

<p>The above Screenshots represent just some of the pages, features and looks the 2012 Edition of the high performance XO Theme for WordPress has up its sleeves. The above site is the fruit of the 2 Days Ycademy Online Seminar for Semiomantics Developers and designers.</p>
<span id="XO_Theme_Features"><h3>XO Theme Features</h3></span>
<p>The 2012 Edition of XO is focused on even more flexibility in as much as editing, cross-browser and cross-platform compatibility are concerned.</p>
<p>The Site displays perfectly on Mobile devices, showing responsiveness also of the plugged in scripts chosen of which some have been adapted to satisfy the high standards of Semiomantics Publishing Scripts for Excellence.</p>
<p>The site elaborated at the Ycademy Online Seminar this past week-end features some smashing features, such as:</p>
<ul>
<li>Background Slideshow, customizable for each page, post or archive</li>
<li>Built in Directory</li>
<li>Media Library for YouTube and Vimeo</li>
<li>Pro-sliders which can be deployed anywhere on the site</li>
<li>In addition to the responsive design, a separate light Mobile Version is available</li>
<li>Bold and Efficient Navigation</li>
<li>Built in Custom Fonts</li>
<li>Social Network connectivity and publishing</li>
<li>and much more.</li>
</ul>
<span id="XO_for_Developers"><h3>XO for Developers</h3></span>
<p>The XO script is well commented and offers designers a clean and straight forward environment for custom developments. XO uses best practices for WordPress development and makes the best use of the possibilities offered by the WP back-bone, assuring smooth integration and optimized conflict handling.</p>
<span id="XO_for_Designers"><h3>XO for Designers</h3></span>
<p>XO is a great playground for designers. The DIY version allows anyone to adapt layout and colors to taste right from the back-office; there is no need to have any knowledge about coding or designing. The theme behaves like a Chameleon and adapts to specific needs with just a few clicks of the mouse: pre-configured layout elements transform your XO quickly into a Magazine, Newspaper, personal Author Blog, a Media Hub, a Shop, a Marketing Machine, a Social Media Publisher, a Product Promoter or a Fan Site or most anything your imagination dictates.</p>
<p>For the professional designer, XO offers a well commented environment. Custom code can be added right from the dashboard or, as I prefer using a child theme. XO is tuned for HTML5 and CSS3 use, making it a modern and inspiring framework for exceptional design effects.</p>
<span id="XO_out_of_the_Box"><h3>XO out of the Box</h3></span>
<p>Out of the box, the XO Theme for WordPress provides a stable and reliable, robust and optimized solution for common use. It provides built in features such a slider with multiple transitions and a one click selector for easy use.</p>
<p>Layouts can be easily adapted to needs and purpose of the site. In fact, most custom designers rely on the theme engine to format efficiently layouts.</p>
<span id="Custom_XO"><h3>Custom XO</h3></span>
<p>The site featured in the above gallery uses a few pro plug-ins to add functionality in function of customer requirements. The integration of such add on scripts is a relatively simple process for designers and developers.</p>
<span id="Customization_of_the_XO_Theme"><h3>Customization of the XO Theme</h3></span>
<p>XO has been developed for high performance, productivity, excellence in publishing and flexibility. For the professional users, the XO Theme constitues a solid base with a huge potential for customization and creative artistic expression.</p>
<span id="Semiomantics_XO_2012_Release"><h3>Semiomantics XO 2012 Release</h3></span>
<p>The release of XO Version 3.3.x is planned for the first week of February. The present Release Candidate has been thoroughly tested. A few minor issues will be taken care off before XO will be available to the public.</p>
<span id="Upgrading_existing_XO_installations"><h3>Upgrading existing XO installations</h3></span>
<p>If your site is running on Semiomantics XO suing basic customization, the theme can just be overwritten. (Save your custom CSS beforehand.)</p>
<p>If you are using a custom version with custom developments or a child theme, some of your customization will need to be adapted to the enhancements of XO 2012. This concerns namely custom headers and footers as well as custom functions.</p>
<p>Support for developers and designers is available as usual at our Ycademy Online Calls and Seminars or through Semiomantics Pro Support.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/" title="wordpress xo theme">wordpress xo theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/" title="1001 font mouse fruit faces">1001 font mouse fruit faces</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/" title="1001 фейс">1001 фейс</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/" title="xo theme">xo theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/" title="xotheme">xotheme</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-blog/' rel='bookmark' title='Semiomantics XO Blog'>Semiomantics XO Blog</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/' rel='bookmark' title='Facebook Strategy with WordPress'>Facebook Strategy with WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/' rel='bookmark' title='Ycademy Online Seminar January 2012'>Ycademy Online Seminar January 2012</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/semiomantics-xo-2010-edition/' rel='bookmark' title='Semiomantics XO 2010 Edition'>Semiomantics XO 2010 Edition</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/wordpress-shop-version-3-by-semiomantics/' rel='bookmark' title='WordPress Shop Version 3 by Semiomantics'>WordPress Shop Version 3 by Semiomantics</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ycademy Online Seminar January 2012</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 10:40:09 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Facebook Developments]]></category>
		<category><![CDATA[Facebook Marketing Ycademy]]></category>
		<category><![CDATA[Online Seminar]]></category>
		<category><![CDATA[Publishing Online]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Semiomantics Ycademy]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[Responsive WordPress Theme]]></category>
		<category><![CDATA[XO]]></category>
		<category><![CDATA[XO Theme for WordPress]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22516</guid>
		<description><![CDATA[Ycademy Online Seminar January 2012 - The XO Theme for WordPress remains the most flexible theme for custom development, accessible to most anyone
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wp-best-shop/' rel='bookmark' title='Ycademy Online Seminar January 2010'>Ycademy Online Seminar January 2010</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-may-2011/' rel='bookmark' title='Ycademy Online Seminar May 2011'>Ycademy Online Seminar May 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar/' rel='bookmark' title='Ycademy Online Seminar'>Ycademy Online Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-april-2011/' rel='bookmark' title='Ycademy Online Seminar April 2011'>Ycademy Online Seminar April 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/ycademy-online-publishing-seminar/' rel='bookmark' title='Ycademy Online Publishing Seminar'>Ycademy Online Publishing Seminar</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Semiomantics_XO_with_CSS3_and_HTML5"><h2>Semiomantics XO with CSS3 and HTML5</h2></span>
<p>Time has come to learn about new technologies available for web designers and developers. All common browsers are increasingly able to read and interpret CSS 3 and HTML5 and about all computers are equipped to read java and jQuery. Therefore new possibilities become available to XO developers which we will focus on during the January Seminar.</p>
<span id="XO_Theme_for_WordPress"><h2>XO Theme for WordPress</h2></span>
<p>XO has evolved over the past 4 years along with WordPress Developments. The theme has become responsive and shows perfectly on smart phones and tablets.</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/01/screens2h1-300.jpg"><img class="alignnone size-large wp-image-22518" title="screens2h1-300" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/screens2h1-300-460x213.jpg" alt="XO Theme for WordPress" width="460" height="213" /></a></p>
<span id="XO_Edition_2012"><h2>XO Edition 2012</h2></span>
<p>Subsequent to the release of WordPress 3.3.x XO needed some adjustments and updates which we have implemented and tested. New design functions become available for advanced customization. XO remains the most flexible theme for custom development, accessible to most anyone.</p>
<span id="The_XO_Seminar"><h3>The XO Seminar</h3></span>
<p>The goal of the seminar is to become familiar with XO and it’s new features as well as to learn how CSS3, HTML5 and jQuery allow to adapt XO to most any customer’s needs.</p>
<p>Some of the technical issues we will have a detailed look at are:</p>
<ul>
<li>Transparencies with CSS3</li>
<li>Background Sliders</li>
<li>Mobile Verions using WPTouch Pro</li>
<li>Content and Frame sliders with Pro Slider and SlideDeck Pro</li>
<li>Social Network connectivity with FacePages</li>
<li>How to make a WP theme responsive (adapting to different screen sizes such as Smart Phones Tablets and bigger)</li>
</ul>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/01/mobile1-800.jpg"><img class="alignnone size-large wp-image-22519" title="XO on Mobile" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/mobile1-800-460x306.jpg" alt="XO on Mobile" width="460" height="306" /></a></p>
<span id="How_to_expand_XO_functionality"><h3>How to expand XO functionality?</h3></span>
<p>The most obvious expansions are via plug-ins. We will show how to make the best use of plug-ins for the Mobile Web, Social Networking, Social Media Publishing, Social Network Marketing as well as for more attractive display. Time permitting we will look into additional functions, such as shopping cart or marketing specific scripts.</p>
<p>We also will start looking into another important chapter:</p>
<p><strong>How to convert your XO sites into a Mobile App!</strong></p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/01/mobile2-460.jpg"><img class="alignnone size-full wp-image-22522" title="XO on iPhone" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/mobile2-460.jpg" alt="XO on iPhone" width="460" height="690" /></a></p>
<span id="Build_an_extraordinary_Site"><h3>Build an extraordinary Site</h3></span>
<p>In order to make the understanding easier, we will build a new site during the 2 days event. Please join our pre-seminar call on Thursday to prepare the event by setting up a new XO powered site.</p>
<span id="Materials"><h3>Materials</h3></span>
<p>All materials will be provided. You will just need some images/photos, videos and other content you may want to use to populate the XO site.</p>
<span id="Schedule"><h3>Schedule</h3></span>
<p>Saturday and Sunday, 28/29 January, 2012 from 1 pm London time till 9 pm London time.</p>
<span id="Tickets"><h3>Tickets</h3></span>
<p>Tickets are available on our new shop at HIOD.com. Please click on the below image to order.</p>
<p><a href="http://hiod.com/shop/ycademy-online-seminar-tickets/ycademy-online-seminar-january-2012/" rel="me" target="_blank"><img class="alignnone size-large wp-image-22521" title="Ycademy Online Seminar Ticket" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/512x512-ycademy-shop-1-460x460.png" alt="Ycademy Online Seminar Ticket" width="460" height="460" /></a></p>
<p>Discounts as usual for Ycademy Pros: Please mail Bianca at bianca(at)ycademy.com for the coupon code.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/" title="русские темы для wordpress 3 3">русские темы для wordpress 3 3</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wp-best-shop/' rel='bookmark' title='Ycademy Online Seminar January 2010'>Ycademy Online Seminar January 2010</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-may-2011/' rel='bookmark' title='Ycademy Online Seminar May 2011'>Ycademy Online Seminar May 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar/' rel='bookmark' title='Ycademy Online Seminar'>Ycademy Online Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-april-2011/' rel='bookmark' title='Ycademy Online Seminar April 2011'>Ycademy Online Seminar April 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/ycademy-online-publishing-seminar/' rel='bookmark' title='Ycademy Online Publishing Seminar'>Ycademy Online Publishing Seminar</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Semiomantics XO 2011 for WordPress</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-2011-for-wordpress-2/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-2011-for-wordpress-2/#comments</comments>
		<pubDate>Fri, 23 Dec 2011 18:03:35 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Personal XO 2011]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[WordPress Framework]]></category>
		<category><![CDATA[WordPress Theme]]></category>
		<category><![CDATA[XO2011]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22499</guid>
		<description><![CDATA[A clip with XO 2011 Sites   The clip presents some of the custom sites built on Semiomantics XO 2011. Semiomantics XO 2012 will be released in January to catch up with the latest WordPress developments. Incoming search terms:semiomantics xo wordpressRelated posts: Semiomantics XO 2011 for WordPress Best WordPress and Semiomantics Semiomantics XO 2011 Release FAQ Semiomantics XO 2011 WordPress 2.8 Baker
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-2011-for-wordpress/' rel='bookmark' title='Semiomantics XO 2011 for WordPress'>Semiomantics XO 2011 for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/best-wordpress-and-semiomantics/' rel='bookmark' title='Best WordPress and Semiomantics'>Best WordPress and Semiomantics</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-semiomantics-yorgo-nestoridis-development/semiomantics-xo-2011-faq/' rel='bookmark' title='Semiomantics XO 2011 Release FAQ'>Semiomantics XO 2011 Release FAQ</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/semiomantics-xo-2011/' rel='bookmark' title='Semiomantics XO 2011'>Semiomantics XO 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wordpress-2-8-baker/' rel='bookmark' title='WordPress 2.8 Baker'>WordPress 2.8 Baker</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="A_clip_with_XO_2011_Sites"><h2>A clip with XO 2011 Sites</h2></span>
<p> <br />
<iframe width="560" height="355" src="http://www.youtube.com/embed/JZDK0ZFIXIY?rel=0&amp;hd=1" frameborder="0" allowfullscreen></iframe><br />
The clip presents some of the custom sites built on Semiomantics XO 2011.</p>
<p>Semiomantics XO 2012 will be released in January to catch up with the latest WordPress developments.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-2011-for-wordpress-2/" title="semiomantics xo wordpress">semiomantics xo wordpress</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-2011-for-wordpress/' rel='bookmark' title='Semiomantics XO 2011 for WordPress'>Semiomantics XO 2011 for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/best-wordpress-and-semiomantics/' rel='bookmark' title='Best WordPress and Semiomantics'>Best WordPress and Semiomantics</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-semiomantics-yorgo-nestoridis-development/semiomantics-xo-2011-faq/' rel='bookmark' title='Semiomantics XO 2011 Release FAQ'>Semiomantics XO 2011 Release FAQ</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/semiomantics-xo-2011/' rel='bookmark' title='Semiomantics XO 2011'>Semiomantics XO 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wordpress-2-8-baker/' rel='bookmark' title='WordPress 2.8 Baker'>WordPress 2.8 Baker</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-2011-for-wordpress-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Facebook Strategy with WordPress</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 18:51:29 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Best Facebook Page]]></category>
		<category><![CDATA[Best Facebook Pages]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Advertising]]></category>
		<category><![CDATA[Facebook Developments]]></category>
		<category><![CDATA[Facebook MArketing]]></category>
		<category><![CDATA[Facebook Marketing Ycademy]]></category>
		<category><![CDATA[Facebook Online Seminar]]></category>
		<category><![CDATA[Facebook Optimization]]></category>
		<category><![CDATA[Facebook Pages]]></category>
		<category><![CDATA[Facebook Shop]]></category>
		<category><![CDATA[Facebook Ycademy]]></category>
		<category><![CDATA[Facebook YORGOO]]></category>
		<category><![CDATA[Google +]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Marketing Herbalife on Twitter Facebook and Google]]></category>
		<category><![CDATA[Online Publishing]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Publishing]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics Best FB]]></category>
		<category><![CDATA[Semiomantics Facebook Developments]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social Network Publishing]]></category>
		<category><![CDATA[Social Network Publishing Seminar]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[Web Master Training]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[WP Best Business Theme]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Facebook Reveal Page]]></category>
		<category><![CDATA[Facebook Strategies]]></category>
		<category><![CDATA[social media marketing]]></category>
		<category><![CDATA[WordPress for Facebook]]></category>
		<category><![CDATA[Ycademy]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22367</guid>
		<description><![CDATA[10 Steps to Implement your Facebook Strategy with WordPress Implementing your Facebook Strategy will be at the center of the November Ycademy Seminar. This hands-on Seminar and Workshop will stretch over two days and build with participants an eye-ball-twisting Facebook presence. See the seminar schedule at the bottom of the post. The Seminar is designed for WordPress Developers and WP users who are looking for high productivity and customized publishing and marketing solutions. 11 Efficient Facebook Strategies This topic deals with efficient strategies which will efficiently improve your Facebook presence. 7 Ways to jeopardize your Facebook success for sure Surfing through Facebook we notice some common errors well intended people commit when building their Facebook presence. We will discuss these issues and show you how to eliminate them from your personal or business Facebook. 4 Important Facebook features to focus on While content is king, there are different ways of making it accessible to visitors. We will discuss the recent changes Facebook has implemented and show you where the focus should be in order to improve your visibility, traffic and business or network expansion on Facebook. Facebook Privacy and Accessibility settings Function of your strategy we will define and optimize [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-on-facebook/' rel='bookmark' title='WordPress on Facebook'>WordPress on Facebook</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/facebook-and-mobile-web-seminar-by-ycademy/' rel='bookmark' title='Facebook and Mobile Web Seminar by Ycademy'>Facebook and Mobile Web Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/facebook-marketing-2-2/' rel='bookmark' title='Facebook Marketing 2'>Facebook Marketing 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-for-facebook-fan-pages-with-fblaster/' rel='bookmark' title='WordPress for Facebook Fan Pages with FBlaster'>WordPress for Facebook Fan Pages with FBlaster</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-optimization-for-facebook/' rel='bookmark' title='Semiomantics Optimization for Facebook'>Semiomantics Optimization for Facebook</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Steps_to_Implement_your_Facebook_Strategy_with_WordPress"><h2>10 Steps to Implement your Facebook Strategy with WordPress</h2></span>
<div class='toc wptoc'>
<h2>Contents</h2>
<ol class='toc-odd level-1'>
	<li>
		<a href="#Steps_to_Implement_your_Facebook_Strategy_with_WordPress">10 Steps to Implement your Facebook Strategy with WordPress</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#Efficient_Facebook_Strategies">11 Efficient Facebook Strategies</a>
			</li>
			<li>
				<a href="#Ways_to_jeopardize_your_Facebook_success_for_sure">7 Ways to jeopardize your Facebook success for sure</a>
			</li>
			<li>
				<a href="#Important_Facebook_features_to_focus_on">4 Important Facebook features to focus on</a>
			</li>
			<li>
				<a href="#Facebook_Privacy_and_Accessibility_settings">Facebook Privacy and Accessibility settings</a>
			</li>
			<li>
				<a href="#Workshop:_Information_and_Profile">Workshop: Information and Profile</a>
			</li>
			<li>
				<a href="#Friends_Fans_and_Subscriptions">Friends, Fans and Subscriptions</a>
			</li>
			<li>
				<a href="#Facebook_Pages">Facebook Pages</a>
			</li>
			<li>
				<a href="#Workshop:_Build_a_simple_Facebook_page">Workshop: Build a simple Facebook page</a>
			</li>
			<li>
				<a href="#Creative_and_useful_Facebook_Page_Content">Creative and useful Facebook Page Content</a>
			</li>
			<li>
				<a href="#Integrating_WordPress_with_Facebook">Integrating WordPress with Facebook</a>
			</li>
			<li>
				<a href="#Workshop:_Build_your_Facebook_with_WordPress">Workshop: Build your Facebook with WordPress</a>
				<ol class='toc-odd level-3'>
					<li>
						<a href="#Create_Unlimited_Facebook_Fan_Pages_with_WordPress">Create Unlimited Facebook Fan Pages with WordPress</a>
					</li>
					<li>
						<a href="#Increase_Likes_by_150_with_Reveal_Like_Tab_Gateways">Increase Likes by 150% with Reveal “Like” Tab Gateways</a>
					</li>
					<li>
						<a href="#Unlimited_Customization_Options_When_Designing_Your_Fan_Pages">Unlimited Customization Options When Designing Your Fan Pages</a>
					</li>
					<li>
						<a href="#Create_Unlimited_Custom_Pages_with_the_WordPress_Page_Editor">Create Unlimited Custom Pages with the WordPress Page Editor</a>
					</li>
					<li>
						<a href="#Create_Custom_Menus_and_Navigation_with_Just_a_Few_Clicks">Create Custom Menus and Navigation with Just a Few Clicks</a>
					</li>
					<li>
						<a href="#Comments_Like_Send_and_Over_50_Custom_Shortcodes_for_Enhanced_Customization">Comments, Like, Send and Over 50+ Custom Shortcodes for Enhanced Customization</a>
					</li>
					<li>
						<a href="#Facebook_Open_Graph_Integration_for_Enhanced_Facebook_Integration_and_Google_SEO">Facebook Open Graph Integration for Enhanced Facebook Integration and Google SEO</a>
					</li>
					<li>
						<a href="#Auto_Post_to_Facebook_From_Your_WordPress_Blog">Auto Post to Facebook From Your WordPress Blog</a>
					</li>
					<li>
						<a href="#Use_Your_Facebook_Albums_and_Photos_on_Your_Blog_and_Fan_Pages">Use Your Facebook Albums and Photos on Your Blog and Fan Pages</a>
					</li>
					<li>
						<a href="#Add_Google_Maps_to_Your_Facebook_Fan_Pages">Add Google Maps to Your Facebook Fan Pages</a>
					</li>
					<li>
						<a href="#Create_Squeeze_and_Sales_Pages_with_Just_a_Few_Clicks_on_Facebook">Create Squeeze and Sales Pages with Just a Few Clicks on Facebook</a>
					</li>
				</ol>
			<li>
				<a href="#Workshop:_Add_Social_Network_features_to_your_WordPress">Workshop: Add Social Network features to your WordPress</a>
			</li>
			<li>
				<a href="#Selective_Access_to_your_FB_Content">Selective Access to your FB Content</a>
			</li>
		</ol>
	<li>
		<a href="#Seminar_Schedule">Seminar Schedule</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#Time">Time</a>
			</li>
			<li>
				<a href="#Materials">Materials</a>
			</li>
			<li>
				<a href="#Tickets_and_Price">Tickets and Price</a>
			</li>
</ol>
</ol>
</ol>
</div>
<div class='wptoc-end'> </div>
<p>Implementing your Facebook Strategy will be at the center of the November Ycademy Seminar. This hands-on Seminar and Workshop will stretch over two days and build with participants an eye-ball-twisting Facebook presence. See the seminar schedule at the bottom of the post.</p>
<p>The Seminar is designed for WordPress Developers and WP users who are looking for high productivity and customized publishing and marketing solutions.</p>
<span id="Efficient_Facebook_Strategies"><h3>11 Efficient Facebook Strategies</h3></span>
<p>This topic deals with efficient strategies which will efficiently improve your Facebook presence.</p>
<div id="attachment_22372" class="wp-caption alignnone" style="width: 525px"><a title="Semiomantics Facebook Page" href="http://facebook.com/semiomantics" rel="me" target="_blank"><img class="size-full wp-image-22372 " title="fab520" src="http://yorgonestoridis.com/wp-content/uploads/2011/11/fab520.png" alt="Best Facebook Pages" width="515" height="591" /></a><p class="wp-caption-text">Visit the Semiomantics Facebook Page</p></div>
<span id="Ways_to_jeopardize_your_Facebook_success_for_sure"><h3>7 Ways to jeopardize your Facebook success for sure</h3></span>
<p>Surfing through Facebook we notice some common errors well intended people commit when building their Facebook presence. We will discuss these issues and show you how to eliminate them from your personal or business Facebook.</p>
<span id="Important_Facebook_features_to_focus_on"><h3>4 Important Facebook features to focus on</h3></span>
<p>While content is king, there are different ways of making it accessible to visitors. We will discuss the recent changes Facebook has implemented and show you where the focus should be in order to improve your visibility, traffic and business or network expansion on Facebook.</p>
<span id="Facebook_Privacy_and_Accessibility_settings"><h3>Facebook Privacy and Accessibility settings</h3></span>
<p>Function of your strategy we will define and optimize privacy settings in order to grant potentially interested visitors access to relevant information. Privacy, Accessibility and List-building as well as Targeted Communication are the essentials of this key session.</p>
<span id="Workshop:_Information_and_Profile"><h3>Workshop: Information and Profile</h3></span>
<p>For people looking for you, your business, services or products, your Profile and Info page are of the utmost importance, the more that your info is visible from outside Facebook and therefore Google efficient. We will set up with participants an efficient Info Page.</p>
<span id="Friends_Fans_and_Subscriptions"><h3>Friends, Fans and Subscriptions</h3></span>
<p>We will discuss the recent changes implemented by Facebook and how they impact on our strategies.  Friends, Fans and Subscription features impact on the way we expand our network and influence on Facebook.</p>
<span id="Facebook_Pages"><h3>Facebook Pages</h3></span>
<p>Overview of the Facebook Page feature. Integration techniques, Apps, Content, Canvas and Pages.</p>
<span id="Workshop:_Build_a_simple_Facebook_page"><h3>Workshop: Build a simple Facebook page</h3></span>
<p>The focus is on the technical set-up of a Facebook Page. As  content we will use a graphic, picture of video.</p>
<span id="Creative_and_useful_Facebook_Page_Content"><h3>Creative and useful Facebook Page Content</h3></span>
<p>What is it you actually wish to display on your Facebook page? In fact there is no limit and it depends entirely on your strategy.</p>
<span id="Integrating_WordPress_with_Facebook"><h3>Integrating WordPress with Facebook</h3></span>
<p>This is the center piece of the seminar. Creating Facebook Page right from your WordPress site is now possible. We will set up a reveal page and different Facebook pages depending on participants needs. In fact we show you how to create a whole website in Facebook, straight from your WordPress.</p>
<p>While this works with most any WordPress 3.1 enabled Theme, we will demonstrate the integration with <a title="Smiomantics XO WordPress Framework and Theme" href="http://semiomantics.com" target="_blank">Semiomantics XO</a>.</p>
<p>In fact we will work with a professional plugin modified for Semiomantics XO.</p>
<span id="Workshop:_Build_your_Facebook_with_WordPress"><h3>Workshop: Build your Facebook with WordPress</h3></span>
<p>The Seminar will guide you to master the following and more:</p>
<ul>
<li>
<span id="Create_Unlimited_Facebook_Fan_Pages_with_WordPress"><h4>Create Unlimited Facebook Fan Pages with WordPress</h4></span>
</li>
<li>
<span id="Increase_Likes_by_150_with_Reveal_Like_Tab_Gateways"><h4>Increase Likes by 150% with Reveal “Like” Tab Gateways</h4></span>
</li>
<li>
<span id="Unlimited_Customization_Options_When_Designing_Your_Fan_Pages"><h4>Unlimited Customization Options When Designing Your Fan Pages</h4></span>
</li>
<li>
<span id="Create_Unlimited_Custom_Pages_with_the_WordPress_Page_Editor"><h4>Create Unlimited Custom Pages with the WordPress Page Editor</h4></span>
</li>
<li>
<span id="Create_Custom_Menus_and_Navigation_with_Just_a_Few_Clicks"><h4>Create Custom Menus and Navigation with Just a Few Clicks</h4></span>
</li>
<li>
<span id="Comments_Like_Send_and_Over_50_Custom_Shortcodes_for_Enhanced_Customization"><h4>Comments, Like, Send and Over 50+ Custom Shortcodes for Enhanced Customization</h4></span>
</li>
<li>
<span id="Facebook_Open_Graph_Integration_for_Enhanced_Facebook_Integration_and_Google_SEO"><h4>Facebook Open Graph Integration for Enhanced Facebook Integration and Google SEO</h4></span>
</li>
<li>
<span id="Auto_Post_to_Facebook_From_Your_WordPress_Blog"><h4>Auto Post to Facebook From Your WordPress Blog</h4></span>
</li>
<li>
<span id="Use_Your_Facebook_Albums_and_Photos_on_Your_Blog_and_Fan_Pages"><h4>Use Your Facebook Albums and Photos on Your Blog and Fan Pages</h4></span>
</li>
<li>
<span id="Add_Google_Maps_to_Your_Facebook_Fan_Pages"><h4>Add Google Maps to Your Facebook Fan Pages</h4></span>
</li>
<li>
<span id="Create_Squeeze_and_Sales_Pages_with_Just_a_Few_Clicks_on_Facebook"><h4>Create Squeeze and Sales Pages with Just a Few Clicks on Facebook</h4></span>
</li>
</ul>
<span id="Workshop:_Add_Social_Network_features_to_your_WordPress"><h3>Workshop: Add Social Network features to your WordPress</h3></span>
<p>Add Facebook related widgets to your front and/or content pages. Google+ and Twitter buttons. Pull in Facebook Albums, Events, like Buttons and more. Use Facebook Connect to log in to or to register with your blog.</p>
<span id="Selective_Access_to_your_FB_Content"><h3>Selective Access to your FB Content</h3></span>
<p>Create content which is only accessible after visitors clicked the “Like” button. A smashing filter which allows you to manage accessibility right from your XO.</p>
<span id="Seminar_Schedule"><h2>Seminar Schedule</h2></span>
<span id="Time"><h3>Time</h3></span>
<p>Saturday and Sunday November 26/27, 2011.</p>
<p>We start at 1 pm London Time and end at 9 pm London time both days.</p>
<span id="Materials"><h3>Materials</h3></span>
<p>You need a WordPress blog preferably with FTP access.</p>
<p>Scripts and all other materials are provided. <strong></strong></p>
<p><strong>We will install the necessary scripts for you previous to the Seminar; please get your Tickets early.</strong> If we are not yet in possession of the FTP access to your site, please send it by email to Bianca Gubalke at bianca(at)ycademy.com.</p>
<span id="Tickets_and_Price"><h3>Tickets and Price</h3></span>
<p>The Price for Participating, Materials and access to recordings is $85.</p>
<div id="attachment_22373" class="wp-caption alignnone" style="width: 508px"><a title="Ycademy Seminar Ticket" href="http://shop.yorgonestoridis.com/web-design/implementing-your-facebook-strategy/" rel="me" target="_blank"><img class="size-full wp-image-22373 " title="ycademy-seminar-tickets" src="http://yorgonestoridis.com/wp-content/uploads/2011/11/ycademy-seminar-tickets.png" alt="Ycademy Seminar Ticket" width="498" height="498" /></a><p class="wp-caption-text">Click to get your Ticket</p></div>
<p>Discount as usual for Ycademy Pros. Please contact Bianca Gubalke at bianca(at)ycademy.com for the code or any other question you may have pertaining to the Seminar.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="social community feature like facebook in wordpress">social community feature like facebook in wordpress</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="creating efficient blog pages in wordpress">creating efficient blog pages in wordpress</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="best facebook strategy">best facebook strategy</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="facebook strategy">facebook strategy</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="strategy for facebook wordpress integration">strategy for facebook wordpress integration</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="integrate wordpress blog with facebook page">integrate wordpress blog with facebook page</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="increase likes on a wordpress post">increase likes on a wordpress post</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="increase likes by 150%">increase likes by 150%</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="implement strategy to add to our number of facebook fan">implement strategy to add to our number of facebook fan</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="how to make your fb profile accessible on google">how to make your fb profile accessible on google</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-on-facebook/' rel='bookmark' title='WordPress on Facebook'>WordPress on Facebook</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/facebook-and-mobile-web-seminar-by-ycademy/' rel='bookmark' title='Facebook and Mobile Web Seminar by Ycademy'>Facebook and Mobile Web Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/facebook-marketing-2-2/' rel='bookmark' title='Facebook Marketing 2'>Facebook Marketing 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-for-facebook-fan-pages-with-fblaster/' rel='bookmark' title='WordPress for Facebook Fan Pages with FBlaster'>WordPress for Facebook Fan Pages with FBlaster</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-optimization-for-facebook/' rel='bookmark' title='Semiomantics Optimization for Facebook'>Semiomantics Optimization for Facebook</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress 3.3 Update</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-3-3-update/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-3-3-update/#comments</comments>
		<pubDate>Sat, 19 Nov 2011 19:34:24 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Blurb]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[WordPress 3.3]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22360</guid>
		<description><![CDATA[WordPress 3.3 Update for XO by Semiomantics Semiomantics XO users: update to WP 3.3 and appreciate the new admin bar featuring also your XO theme menu. Also new: the drag and drop media up-loader as well as the admin menu :-). Incoming search terms:update wordpress 2 9 3 3upgrade wordpress 2 9 to 3 3wordpress 3 3wordpress 3 3 blurb to postRelated posts: WordPress Update 3.0.4 WordPress 3.0.2 update WordPress Update — Webmaster Training WordPress 2.9 update on Semiomantics Apple Peel for WordPress
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-update-3-0-4/' rel='bookmark' title='WordPress Update 3.0.4'>WordPress Update 3.0.4</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-3-0-2-update/' rel='bookmark' title='WordPress 3.0.2 update'>WordPress 3.0.2 update</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-update-webmaster-training/' rel='bookmark' title='WordPress Update — Webmaster Training'>WordPress Update — Webmaster Training</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-2-9-update-on-semiomantics/' rel='bookmark' title='WordPress 2.9 update on Semiomantics'>WordPress 2.9 update on Semiomantics</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/apple-peel-for-wordpress/' rel='bookmark' title='Apple Peel for WordPress'>Apple Peel for WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="WordPress_3.3_Update_for_XO_by_Semiomantics"><h2>WordPress 3.3 Update for XO by Semiomantics</h2></span>
<p>Semiomantics XO users: update to WP 3.3 and appreciate the new admin bar featuring also your XO theme menu. Also new: the drag and drop media up-loader as well as the admin menu :-).</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-3-3-update/" title="update wordpress 2 9 3 3">update wordpress 2 9 3 3</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-3-3-update/" title="upgrade wordpress 2 9 to 3 3">upgrade wordpress 2 9 to 3 3</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-3-3-update/" title="wordpress 3 3">wordpress 3 3</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-3-3-update/" title="wordpress 3 3 blurb to post">wordpress 3 3 blurb to post</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-update-3-0-4/' rel='bookmark' title='WordPress Update 3.0.4'>WordPress Update 3.0.4</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-3-0-2-update/' rel='bookmark' title='WordPress 3.0.2 update'>WordPress 3.0.2 update</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-update-webmaster-training/' rel='bookmark' title='WordPress Update — Webmaster Training'>WordPress Update — Webmaster Training</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-2-9-update-on-semiomantics/' rel='bookmark' title='WordPress 2.9 update on Semiomantics'>WordPress 2.9 update on Semiomantics</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/apple-peel-for-wordpress/' rel='bookmark' title='Apple Peel for WordPress'>Apple Peel for WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-3-3-update/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Marketing with WordPress Seminar</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/marketing-with-wordpress-seminar/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/marketing-with-wordpress-seminar/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 10:04:22 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Online Seminar]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WordPress Training]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[Email Marketing with WordPress]]></category>
		<category><![CDATA[Marketing with WordPress Seminar]]></category>
		<category><![CDATA[XOmail]]></category>
		<category><![CDATA[Ycademy Online Seminars]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=21879</guid>
		<description><![CDATA[Marketing with WordPress Seminar. The August Ycademy Online Seminar will focus on transforming your WordPress CMS into a powerful Marketing Machine.
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-development-seminar/' rel='bookmark' title='WordPress Development Seminar'>WordPress Development Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/social-network-publishing-and-marketing-seminar/' rel='bookmark' title='Social Network Publishing and Marketing Seminar'>Social Network Publishing and Marketing Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-may-2011/' rel='bookmark' title='Ycademy Online Seminar May 2011'>Ycademy Online Seminar May 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/ycademy-wordpress-and-flash-seminar/' rel='bookmark' title='Ycademy WordPress and Flash Seminar'>Ycademy WordPress and Flash Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wordpress-seminar-by-ycademy/' rel='bookmark' title='WordPress Seminar by Ycademy'>WordPress Seminar by Ycademy</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="How_to_Use_WordPress_for_Online_Marketing"><h2>How to Use WordPress for Online Marketing</h2></span>
<div class='toc wptoc'>
<h2>Contents</h2>
<ol class='toc-odd level-1'>
	<li>
		<a href="#How_to_Use_WordPress_for_Online_Marketing">How to Use WordPress for Online Marketing</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#Online_Marketing">Online Marketing</a>
			</li>
			<li>
				<a href="#WordPress_Marketing_Theme_XO">WordPress Marketing Theme XO</a>
			</li>
			<li>
				<a href="#Email_Marketing_with_XO_for_WordPress">Email Marketing with XO for WordPress</a>
			</li>
			<li>
				<a href="#Setting_up_the_XO_Theme_for_Email_Marketing">Setting up the XO Theme for Email Marketing</a>
			</li>
			<li>
				<a href="#Newsletter_and_Email_Design_for_WordPress_XO_Theme">Newsletter and Email Design for WordPress (XO Theme)</a>
			</li>
			<li>
				<a href="#Affiliate_Marketing_with_WordPress_XO_Theme">Affiliate Marketing with WordPress (XO Theme)</a>
			</li>
			<li>
				<a href="#Schedule">Schedule</a>
			</li>
</ol>
</ol>
</ol>
</div>
<div class='wptoc-end'> </div>
<p>The August Ycademy Online Seminar will focus on transforming your WordPress CMS into a powerful Marketing Machine.</p>
<span id="Online_Marketing"><h3>Online Marketing</h3></span>
<p>Online Marketing is about gaining high visibility within a target market and submitting to targeted audiences our products and services. While a business website is the base of the online presence, the visibility and traffic remain the essential part of the marketing process.</p>
<p>Semiomantics has proven for years its ability to gain high Google rankings, visibility and traffic in most any niche and under most any keyword. The XO script allows us to out-perform competitors when it comes to publishing.</p>
<p>Attracting potential customers to our website is the first step, keeping visitors on the site and making them return is a second issue all together. Also, with the often large number of affiliate links users have to fight with, we need to implement features which make the workflow more efficient and allow to automatically promote affiliate links under multiple keywords. In fact, this does not only concern the promotion of Affiliate links, but any link to which we want to drive traffic.</p>
<p><a href="http://www.google.com/#hl=en&amp;cp=24&amp;gs_id=d3&amp;xhr=t&amp;q=marketing+with+wordpress&amp;qe=bWFya2V0aW5nIHdpdGggd29yZHByZXNz&amp;qesig=Pn6C-hTKBKLrXU0yLk4kSQ&amp;pkc=AFgZ2tkmNeyXIJ1qInLxsSk5LwZtEY2hqZzUXho2bjTYb967d6QIKB-nYbMGCAWhQbWliw9JB0Y-r0KSvZ7zV3fkrH5toI5cVA&amp;pq=downline%20builder%20script&amp;pf=p&amp;sclient=psy&amp;source=hp&amp;pbx=1&amp;oq=marketing+with+wordpress&amp;aq=0v&amp;aqi=g-v1g-m3&amp;aql=&amp;gs_sm=&amp;gs_upl=&amp;bav=on.2,or.r_gc.r_pw.&amp;fp=a4928e5e8a1fad2e&amp;biw=1680&amp;bih=862"><img class="alignnone size-full wp-image-21880" title="1024X475-ycademy-august" src="http://yorgonestoridis.com/wp-content/uploads/2011/08/1024X475-ycademy-august.png" alt="Ycademy Online Seminar Marketing with WordPress" width="460" height="213" /></a></p>
<span id="WordPress_Marketing_Theme_XO"><h3>WordPress Marketing Theme XO</h3></span>
<p>The Semiomantics XO Framework is built with all the characteristics required for a high performance marketing website. Flexible layouts, easy customization and above all, highly optimized for Search Engines, XO serves as the ideal starting point for any online marketing effort.</p>
<p>Depending on the marketing strategies, various scripts can be added to XO to execute marketing tasks.</p>
<p>The Seminar will focus in depth on two main strategies:</p>
<ol>
<li>Email Marketing</li>
<li>Affiliate Marketing</li>
</ol>
<span id="Email_Marketing_with_XO_for_WordPress"><h3>Email Marketing with XO for WordPress</h3></span>
<p>We will look into two aspects of Email Marketing:</p>
<ol>
<li>Technical issues</li>
<li>Look and Perception (Design)</li>
</ol>
<span id="Setting_up_the_XO_Theme_for_Email_Marketing"><h3>Setting up the XO Theme for Email Marketing</h3></span>
<p>Email Marketing allows to follow up on visitors and their interest in our content. These follow ups can be implemented by using features such as</p>
<ul>
<li>Opt-in list building</li>
<li>Auto-responders</li>
<li>Newsletters</li>
<li>News blasts</li>
<li>Individual mails</li>
<li>Lead capture pages</li>
</ul>
<p>…  and so on.</p>
<p>Follow-ups aim conversion as well as bringing our content in front of a highly targeted audience (warm market).</p>
<p>The first part of the Seminar will resolve all technical issues and make sure that all participants are fully equipped to launch email campaigns as per individual needs. This means mainly that we will configure and set-up the mailing scripts and features, test them and build one or multiple newsletters to which visitors can subscribe.</p>
<span id="Newsletter_and_Email_Design_for_WordPress_XO_Theme"><h3>Newsletter and Email Design for WordPress (XO Theme)</h3></span>
<p>Designing a Newsletter is similar to designing a Website in as much as the Look and Feel goes. Also, a newsletter, namely its online version can include functions for feed-back and interaction. We will distinguish between the emails being sent out to subscribers and the online version of the newsletter.</p>
<p>Once the functions decided, we will apply graphic design to make the mails and newsletters look attractive and functional.</p>
<p>To start personal Newsletter Theme Development, each participant will receive a copy of the XOmail theme, which will serve as a bases point for customization and adaptation to individual needs.</p>
<p>At the seminar we will customize the Email marketing publications to fit into each participants XO theme design (Logo, color, graphics, fonts, layout).</p>
<p>The set-up and implementation of the above will take a good part of the Seminar’s 2 day schedule.</p>
<span id="Affiliate_Marketing_with_WordPress_XO_Theme"><h3>Affiliate Marketing with WordPress (XO Theme)</h3></span>
<p>To conclude the Seminar we will have a closer look at one aspect of Affiliate Marketing, namely the integration of automated link promotion. This is not only important for affiliate marketers but for all those who sell own products and services as well (target your shop). In fact, you could also just promote and automatically build links back to your main authority posts or pages.</p>
<p>Join the Seminar and we will show you how :-).</p>
<span id="Schedule"><h3>Schedule</h3></span>
<p>As usual, the Seminar will take place Saturday and Sunday from 1 pm — 9 pm London Time.</p>
<p>Ticket price: as usual: $85</p>
<p>Discounts for Ycademy Pros as usual — please ask Bianca for the Code. (bianca(at)ycademy.com)</p>
<p><a href="http://shop.yorgonestoridis.com/web-design/marketing-with-wordpress-seminar/" target="_blank"><img class="alignnone size-full wp-image-21882" title="512x512-ycademy-shop-aug" src="http://yorgonestoridis.com/wp-content/uploads/2011/08/512x512-ycademy-shop-aug1.png" alt="Ycademy August Seminar" width="498" height="498" /></a></p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/marketing-with-wordpress-seminar/" title="wordpress seminar themes">wordpress seminar themes</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/marketing-with-wordpress-seminar/" title="seminar wordpress template">seminar wordpress template</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/marketing-with-wordpress-seminar/" title="wordpress theme seminar">wordpress theme seminar</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/marketing-with-wordpress-seminar/" title="how to design a theme for seminar">how to design a theme for seminar</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/marketing-with-wordpress-seminar/" title="seminar wordpress theme">seminar wordpress theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/marketing-with-wordpress-seminar/" title="theme for marketing seminar">theme for marketing seminar</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/marketing-with-wordpress-seminar/" title="themes for marketing seminars">themes for marketing seminars</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/marketing-with-wordpress-seminar/" title="word press user seminars">word press user seminars</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/marketing-with-wordpress-seminar/" title="wordpress marketing themes">wordpress marketing themes</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/marketing-with-wordpress-seminar/" title="wordpress template seminar">wordpress template seminar</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-development-seminar/' rel='bookmark' title='WordPress Development Seminar'>WordPress Development Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/social-network-publishing-and-marketing-seminar/' rel='bookmark' title='Social Network Publishing and Marketing Seminar'>Social Network Publishing and Marketing Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-may-2011/' rel='bookmark' title='Ycademy Online Seminar May 2011'>Ycademy Online Seminar May 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/ycademy-wordpress-and-flash-seminar/' rel='bookmark' title='Ycademy WordPress and Flash Seminar'>Ycademy WordPress and Flash Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wordpress-seminar-by-ycademy/' rel='bookmark' title='WordPress Seminar by Ycademy'>WordPress Seminar by Ycademy</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/marketing-with-wordpress-seminar/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>XO Photo Press WordPress Theme</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 09:20:13 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Elegant Web Design]]></category>
		<category><![CDATA[Elegant WordPress]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics Photo Gallery]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[WP Best Design]]></category>
		<category><![CDATA[WP Best Gallery]]></category>
		<category><![CDATA[WP Best Photo Theme]]></category>
		<category><![CDATA[XO PhotoPress]]></category>
		<category><![CDATA[YORGOO Press]]></category>
		<category><![CDATA[Best Photo Theme for WordPress]]></category>
		<category><![CDATA[Elegant Web DesignWeb Design]]></category>
		<category><![CDATA[Photo Theme for WordPress]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=21832</guid>
		<description><![CDATA[XO PhotoPress is a custom built WP theme based on the XO Framework from Semiomantics. It displays as well Photo Albums and Galleries as well as an integrated Blog; it also can serve as an image Aggregator displaying media in most any format and layout. The Theme is designed for Professional and non-professional use and can easily be used by individuals without advanced knowledge.
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-theme-design/' rel='bookmark' title='Transparent WordPress Theme Design'>Transparent WordPress Theme Design</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-consultant-theme-for-wordpress/' rel='bookmark' title='Best Consultant Theme for WordPress'>Best Consultant Theme for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/new-xo53-theme-for-wordpress/' rel='bookmark' title='New XO53 Theme for WordPress'>New XO53 Theme for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/photo-gallery-by-semiomantics/' rel='bookmark' title='Photo Gallery by Semiomantics'>Photo Gallery by Semiomantics</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wp-best-old-fashion-theme/' rel='bookmark' title='WP Best Old Fashion Theme'>WP Best Old Fashion Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Semiomantics_XO_PhotoPress"><h2>Semiomantics XO PhotoPress</h2></span>
<p>This website is dedicated to the beauty and functionality of publishing Photos with WordPress. Photo Press is the Photo Website of YORGOO Press; it demonstrates various layouts and ways to present photos in a user-friendly, attractive and useful way. The site displays perfectly on mobile devices as well.</p>
<div id="attachment_346" class="wp-caption alignnone" style="width: 470px"><a href="http://photo.yorgoopress.com/" rel="me" target="_blank"><img class="size-medium wp-image-346  " title="photopress-home" src="http://photo.yorgoopress.com/wp-content/uploads/2011/08/photopress-home-460x428.jpg" alt="XO Photo Theme For WordPress by Yorgo Nestoridis" width="460" height="428" /></a><p class="wp-caption-text">PhotoPress for WP — Home</p></div>
<div id="attachment_345" class="wp-caption alignnone" style="width: 470px"><a href="http://photo.yorgoopress.com/gallery/" target="_blank"><img class="size-medium wp-image-345 " title="photopress-gallery-navigator" src="http://photo.yorgoopress.com/wp-content/uploads/2011/08/photopress-gallery-navigator-460x428.jpg" alt="XO Photo Theme For WordPress by Yorgo Nestoridis" width="460" height="428" /></a><p class="wp-caption-text">XO PhotoPress — Gallery Navigator</p></div>
<div id="attachment_352" class="wp-caption alignnone" style="width: 470px"><a href="http://photo.yorgoopress.com/wp-content/uploads/2011/08/photopress-small-gallery.jpg" target="_blank"><img class="size-medium wp-image-352 " title="photopress-small-gallery" src="http://photo.yorgoopress.com/wp-content/uploads/2011/08/photopress-small-gallery-460x428.jpg" alt="XO Photo Theme For WordPress by Yorgo Nestoridis" width="460" height="428" /></a><p class="wp-caption-text">XO PhotoPress — Small Gallery Slider</p></div>
<div id="attachment_342" class="wp-caption alignnone" style="width: 470px"><a href="http://photo.yorgoopress.com/people/" target="_blank"><img class="size-medium wp-image-342 " title="photopress-big-gallery" src="http://photo.yorgoopress.com/wp-content/uploads/2011/08/photopress-big-gallery-460x428.jpg" alt="XO Photo Theme For WordPress" width="460" height="428" /></a><p class="wp-caption-text">XO PhotoPress for WordPress — Large Gallery Slider</p></div>
<div id="attachment_343" class="wp-caption alignnone" style="width: 470px"><a href="http://photo.yorgoopress.com/blog/" target="_blank"><img class="size-medium wp-image-343  " title="photopress-blog" src="http://photo.yorgoopress.com/wp-content/uploads/2011/08/photopress-blog-460x428.jpg" alt="XO Photo Theme For WordPress by Yorgo Nestoridis" width="460" height="428" /></a><p class="wp-caption-text">XO PhotoPress — Blog</p></div>
<div id="attachment_344" class="wp-caption alignnone" style="width: 470px"><a href="http://photo.yorgoopress.com/contact/" target="_blank"><img class="size-medium wp-image-344 " title="photopress-contact" src="http://photo.yorgoopress.com/wp-content/uploads/2011/08/photopress-contact-460x428.jpg" alt="XO Photo Theme For WordPress by Yorgo Nestoridis" width="460" height="428" /></a><p class="wp-caption-text">XO PhotoPress — Contact</p></div>
<span id="Semiomantics_XO_for_WordPress"><h3>Semiomantics XO for WordPress</h3></span>
<p>No need to say much about XO for WordPress, its extraordinary performance has been proven times and again. The present site shows the flexibility of XO allowing professional designers to apply the most exciting designs to a high performance script without impacting negatively on the overall performance.</p>
<span id="XO_PhotoPress_a_high_profile_WordPress_Theme"><h3>XO PhotoPress a high profile WordPress Theme</h3></span>
<p>XO PhotoPress is a custom built WP theme based on the XO Framework from Semiomantics. It displays as well Photo Albums and Galleries as well as an integrated Blog; it also can serve as an image Aggregator displaying media in most any format and layout. The Theme is designed for Professional and non-professional use and can easily be used by individuals without advanced knowledge.</p>
<p>More to follow.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="PhotoPress - Gallery">PhotoPress — Gallery</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="template wordpress black rollover">template wordpress black rollover</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="photopress wordpress theme">photopress wordpress theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="photopress theme">photopress theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="xo photo album">xo photo album</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="wordpress slide gallery">wordpress slide gallery</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="image gallery slider">image gallery slider</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="black and white photoblog template - blogger">black and white photoblog template — blogger</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="best wordpress black theme for bloggers">best wordpress black theme for bloggers</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="wordpress photography theme">wordpress photography theme</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-theme-design/' rel='bookmark' title='Transparent WordPress Theme Design'>Transparent WordPress Theme Design</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-consultant-theme-for-wordpress/' rel='bookmark' title='Best Consultant Theme for WordPress'>Best Consultant Theme for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/new-xo53-theme-for-wordpress/' rel='bookmark' title='New XO53 Theme for WordPress'>New XO53 Theme for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/photo-gallery-by-semiomantics/' rel='bookmark' title='Photo Gallery by Semiomantics'>Photo Gallery by Semiomantics</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wp-best-old-fashion-theme/' rel='bookmark' title='WP Best Old Fashion Theme'>WP Best Old Fashion Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to reach Google Top 10 with Images</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 05:58:26 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Online Seminar]]></category>
		<category><![CDATA[Photo Media Stock]]></category>
		<category><![CDATA[Photo Website]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Training]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[Digital Photos on WordPress]]></category>
		<category><![CDATA[Google Top 10 with Images]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Ycademy Online Seminar]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=21793</guid>
		<description><![CDATA[Google Top 10 with Photos on XO for WordPress Last night, the participants of the Image Editing and Publishing  Seminar by Ycademy, have demonstrated with a live test, how a well published digital photo can reach Google Top 10 on the general as well as on the image search engine. Semiomantics XO takes your Images to Google Top 10 Semiomantics XO is in my opinion the best publishing framework for WordPress. XO powered websites reach high visibility and perform extremely well on search engines namely on Google. Since the release of XO 2011, pre-configured custom post formats are available, namely for media publishing. Here below the screenshots of the top 30 on Google   Page 2:   Page 3: Search returns on Google The search term: Publishing Digital Photos on WordPress returns over 19 million results. Before our publication, WordPress and related sites were on top. As you can see from the above shots, all top 30 positions have been grabbed by seminar participants’ author blogs or related websites. The above is also a nice demonstration of the power of the YORGOO Publishing Model as presented a few years ago and revised recently. Search Returns on Google Image Search Besides [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/google-wave-seminar-hits-google-top-10/' rel='bookmark' title='Wave Seminar Hits Google Top 10'>Wave Seminar Hits Google Top 10</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-marketing/google-top-10-with-twitter/' rel='bookmark' title='Google Top 10 with Twitter'>Google Top 10 with Twitter</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/syros-images-on-google-and-youtube/' rel='bookmark' title='Syros Images on Google and YouTube'>Syros Images on Google and YouTube</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/google-top-10-5/' rel='bookmark' title='Google Top 10 Dominate your Keyword 3'>Google Top 10 Dominate your Keyword 3</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/clacton-airshow-2010-image/' rel='bookmark' title='Clacton Airshow 2010 Images'>Clacton Airshow 2010 Images</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Google_Top_10_with_Photos_on_XO_for_WordPress"><h2>Google Top 10 with Photos on XO for WordPress</h2></span>
<div class='toc wptoc'>
<h2>Contents</h2>
<ol class='toc-odd level-1'>
	<li>
		<a href="#Google_Top_10_with_Photos_on_XO_for_WordPress">Google Top 10 with Photos on XO for WordPress</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#Semiomantics_XO_takes_your_Images_to_Google_Top_10">Semiomantics XO takes your Images to Google Top 10</a>
			</li>
			<li>
				<a href="#Here_below_the_screenshots_of_the_top_30_on_Google">Here below the screenshots of the top 30 on Google</a>
			</li>
			<li>
				<a href="#Search_returns_on_Google">Search returns on Google</a>
			</li>
			<li>
				<a href="#Search_Returns_on_Google_Image_Search">Search Returns on Google Image Search</a>
			</li>
			<li>
				<a href="#The_Images_Published_on_XO">The Images Published on XO</a>
			</li>
			<li>
				<a href="#The_Next_Step_-_Publishing_Power_and_Marketing">The Next Step — Publishing Power and Marketing</a>
			</li>
</ol>
</ol>
</ol>
</div>
<div class='wptoc-end'> </div>
<p>Last night, the participants of the Image Editing and Publishing  Seminar by Ycademy, have demonstrated with a live test, how a well published digital photo can reach Google Top 10 on the general as well as on the image search engine.</p>
<span id="Semiomantics_XO_takes_your_Images_to_Google_Top_10"><h3>Semiomantics XO takes your Images to Google Top 10</h3></span>
<p>Semiomantics XO is in my opinion the best publishing framework for WordPress. XO powered websites reach high visibility and perform extremely well on search engines namely on Google. Since the release of XO 2011, pre-configured custom post formats are available, namely for media publishing.</p>
<span id="Here_below_the_screenshots_of_the_top_30_on_Google"><h3>Here below the screenshots of the top 30 on Google</h3></span>
<p><a href="http://www.google.com/search?q=publishing+digital+photos+on+wordpress&amp;hl=en&amp;biw=1680&amp;bih=862&amp;source=lnms&amp;ei=OjU2ToiGD4_2sgbdmom6Ag&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;cd=1&amp;ved=0CC4Q_AUoAA"><img class="size-full wp-image-21794 alignnone" title="google-top-10-1" src="http://yorgonestoridis.com/wp-content/uploads/2011/08/google-top-10-1.png" alt="Google Top 10 with Digital Photos" width="529" height="991" /></a></p>
<p> </p>
<p><strong>Page 2:</strong></p>
<p><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/attachment/google-top-10-2-2/" rel="attachment wp-att-21795"><img class="size-full wp-image-21795 alignnone" title="google-top-10-2" src="http://yorgonestoridis.com/wp-content/uploads/2011/08/google-top-10-2.png" alt="Publishing Digital Photos on WordPress" width="529" height="991" /></a></p>
<p> </p>
<p><strong>Page 3:</strong></p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/08/google-top-10-3.png"><img class="alignnone size-full wp-image-21796" title="google-top-10-3" src="http://yorgonestoridis.com/wp-content/uploads/2011/08/google-top-10-3.png" alt="Publishing Digital Photos on WordPress" width="529" height="991" /></a></p>
<span id="Search_returns_on_Google"><h3>Search returns on Google</h3></span>
<p>The search term: Publishing Digital Photos on WordPress returns over 19 million results. Before our publication, WordPress and related sites were on top. As you can see from the above shots, all top 30 positions have been grabbed by seminar participants’ author blogs or related websites.</p>
<p>The above is also a nice demonstration of the power of the YORGOO Publishing Model as presented a few years ago and revised recently.</p>
<span id="Search_Returns_on_Google_Image_Search"><h3>Search Returns on Google Image Search</h3></span>
<p>Besides the general search results, we also the Google Image search:</p>
<div id="attachment_21797" class="wp-caption alignnone" style="width: 810px"><a href="http://www.google.com/search?q=publishing+digital+photos+on+wordpress&amp;hl=en&amp;biw=1680&amp;bih=862&amp;prmd=ivns&amp;source=lnms&amp;tbm=isch&amp;ei=OzU2ToWkLsXLswbNkOS5Ag&amp;sa=X&amp;oi=mode_link&amp;ct=mode&amp;cd=2&amp;ved=0CBMQ_AUoAQ"><img class="size-full wp-image-21797" title="google-image-search-top-10" src="http://yorgonestoridis.com/wp-content/uploads/2011/08/google-image-search-top-10.jpg" alt="Publishing Digital Photos on WordPress" width="800" height="306" /></a><p class="wp-caption-text">Click to see the results on Google Image Search</p></div>
<p>5 of the top 7 are images published during the seminar following the XO Publishing recommendations, namely Ranks 1,2,4,5,6; Rank 3 features an image posted earlier on Joe Cettina’s site.</p>
<span id="The_Images_Published_on_XO"><h3>The Images Published on XO</h3></span>
<p>Here are just a few of the images published by seminar participants (sorry guys, I just pinched them from your sites):</p>
<div id="attachment_21798" class="wp-caption alignnone" style="width: 810px"><img class="size-full wp-image-21798" title="blume" src="http://yorgonestoridis.com/wp-content/uploads/2011/08/blume.jpg" alt="Ute Schaedler's Flower" width="800" height="600" /><p class="wp-caption-text">Ute Schaedler’s High Speed Flower</p></div>
<div id="attachment_21799" class="wp-caption alignnone" style="width: 810px"><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/attachment/boat-frame-2/" rel="attachment wp-att-21799"><img class="size-full wp-image-21799" title="boat-frame" src="http://yorgonestoridis.com/wp-content/uploads/2011/08/boat-frame1.jpg" alt="My Greek Fishing Boat" width="800" height="600" /></a><p class="wp-caption-text">My Low Speed Greek Fishing Boat</p></div>
<div id="attachment_21801" class="wp-caption alignnone" style="width: 810px"><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/attachment/bridge11/" rel="attachment wp-att-21801"><img class="size-full wp-image-21801" title="bridge11" src="http://yorgonestoridis.com/wp-content/uploads/2011/08/bridge11.jpg" alt="Joe Cettina's Bridge" width="800" height="1069" /></a><p class="wp-caption-text">Joe Cettina’s Bridge</p></div>
<div id="attachment_21802" class="wp-caption alignnone" style="width: 810px"><a href="http://yorgonestoridis.com/wp-content/uploads/2011/08/Publishing-Digital-Photos-on-WordPress.jpg"><img class="size-full wp-image-21802" title="Publishing-Digital-Photos-on-WordPress" src="http://yorgonestoridis.com/wp-content/uploads/2011/08/Publishing-Digital-Photos-on-WordPress.jpg" alt="Zo Nicholas Garden" width="800" height="600" /></a><p class="wp-caption-text">Zo Nicholas Garden</p></div>
<div id="attachment_21803" class="wp-caption alignnone" style="width: 810px"><img class="size-full wp-image-21803" title="restios-rain01" src="http://yorgonestoridis.com/wp-content/uploads/2011/08/restios-rain01.jpg" alt="Bianca Gubalke's Rainy Day" width="800" height="600" /><p class="wp-caption-text">Bianca Gubalke’s Rainy Day</p></div>
<div id="attachment_21804" class="wp-caption alignnone" style="width: 810px"><img class="size-full wp-image-21804" title="wall" src="http://yorgonestoridis.com/wp-content/uploads/2011/08/wall.jpg" alt="My Wall from Syros" width="800" height="600" /><p class="wp-caption-text">My Wall from Syros</p></div>
<div id="attachment_21805" class="wp-caption alignnone" style="width: 810px"><img class="size-full wp-image-21805" title="wedding" src="http://yorgonestoridis.com/wp-content/uploads/2011/08/wedding.jpg" alt="Christelle Kleinhans Wedding Flowers" width="800" height="600" /><p class="wp-caption-text">Christelle Kleinhans Wedding Flowers</p></div>
<div id="attachment_21806" class="wp-caption alignnone" style="width: 810px"><img class="size-full wp-image-21806" title="Birding-Trip" src="http://yorgonestoridis.com/wp-content/uploads/2011/08/Birding-Trip.jpg" alt="Barry Bell's Birding Trip" width="800" height="600" /><p class="wp-caption-text">Barry Bell’s Birding Trip</p></div>
<span id="The_Next_Step_-_Publishing_Power_and_Marketing"><h3>The Next Step — Publishing Power and Marketing</h3></span>
<p>High visibility with media files is the essence of successful media based marketing. Showing nice images is one thing, providing visitors with services and goods is another issue. The publishing power of your XO, the quality of your graphics and images constitute a powerful tool to market most any product.</p>
<p>The Ycademy August Seminar will focus on: How to use your Publishing Power and Media to flatten the Path to Profitability.</p>
<p>I am looking forward to seeing you there.</p>
<p> </p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/" title="google">google</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/" title="wordpress Google Image">wordpress Google Image</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/" title="boat frame">boat frame</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/" title="how to top rank in google images">how to top rank in google images</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/" title="images at top of google image search">images at top of google image search</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/" title="images google">images google</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/" title="photo to top of google images">photo to top of google images</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/" title="photos taken by christelle kleynhans">photos taken by christelle kleynhans</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/" title="Puplished my photo in google">Puplished my photo in google</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/" title="top google images marketing">top google images marketing</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/google-wave-seminar-hits-google-top-10/' rel='bookmark' title='Wave Seminar Hits Google Top 10'>Wave Seminar Hits Google Top 10</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-marketing/google-top-10-with-twitter/' rel='bookmark' title='Google Top 10 with Twitter'>Google Top 10 with Twitter</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/syros-images-on-google-and-youtube/' rel='bookmark' title='Syros Images on Google and YouTube'>Syros Images on Google and YouTube</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/google-top-10-5/' rel='bookmark' title='Google Top 10 Dominate your Keyword 3'>Google Top 10 Dominate your Keyword 3</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/clacton-airshow-2010-image/' rel='bookmark' title='Clacton Airshow 2010 Images'>Clacton Airshow 2010 Images</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-reach-google-top-10-with-images/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Publish Digital Photos</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/how-to-publish-digital-photos/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/how-to-publish-digital-photos/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 16:49:23 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Digital Media Design]]></category>
		<category><![CDATA[Digital Photography]]></category>
		<category><![CDATA[Media Design]]></category>
		<category><![CDATA[Online Seminar]]></category>
		<category><![CDATA[Photo Editing]]></category>
		<category><![CDATA[Photo Media Stock]]></category>
		<category><![CDATA[Photo Website]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[WordPress Training]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[How to Edit Digital Photos]]></category>
		<category><![CDATA[Publish Digital Photos]]></category>
		<category><![CDATA[WordPress photo Theme]]></category>
		<category><![CDATA[XO Photo for WP]]></category>
		<category><![CDATA[Ycademy Online Seminar July 2011]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=21733</guid>
		<description><![CDATA[Digital Photography and WordPress “How to Edit and Publish Digital Photos” is the focus of the Ycademy Online Seminar in July. 1. How to Edit Digital Photos Taking photos has become a relatively easy and cheap task with the proliferation of accessible digital cameras and mobile devices, such as smart-phones and tablets. Of course the quality of the pictures varies in function of the quality of the camera and the skill of the photographer. Some of the shortcomings can be compensated by improving skills and post editing. The Seminar will deal with editing digital photos using namely Photoshop and OnOne Professional Photo Tools. … after some basic editing … … for web and devices with reduced JPEG quality. Editingand post editing have a lot to do with the purpose of the image as well as on the destination platform. We will look into different options and detail specific requirements for the mobile web. OnOne Professional Photo Editing Tools The above sample shows that editing makes the image heavier! The more filters, masks and brushes we apply the more Kb we ad and the slower the image will load once on the site. Here it is getting interesting: the above image counts [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-1/' rel='bookmark' title='Digital Photography Ycademy 1'>Digital Photography Ycademy 1</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/' rel='bookmark' title='Digital Photography Ycademy 10'>Digital Photography Ycademy 10</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-8/' rel='bookmark' title='Digital Photography Ycademy 8'>Digital Photography Ycademy 8</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-and-photo-editing/' rel='bookmark' title='Digital Photography and Photo Editing'>Digital Photography and Photo Editing</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photo-ycademy-4/' rel='bookmark' title='Digital Photography Ycademy 4'>Digital Photography Ycademy 4</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Digital_Photography_and_WordPress"><h2>Digital Photography and WordPress</h2></span>
<p>“How to Edit and Publish Digital Photos” is the focus of the Ycademy Online Seminar in July.</p>
<span id="How_to_Edit_Digital_Photos"><h3>1. How to Edit Digital Photos</h3></span>
<p>Taking photos has become a relatively easy and cheap task with the proliferation of accessible digital cameras and mobile devices, such as smart-phones and tablets. Of course the quality of the pictures varies in function of the quality of the camera and the skill of the photographer. Some of the shortcomings can be compensated by improving skills and post editing.</p>
<p>The Seminar will deal with <strong>editing digital photos using namely Photoshop and OnOne Professional Photo Tools.</strong></p>
<div id="attachment_21748" class="wp-caption alignnone" style="width: 310px"><a href="http://yorgonestoridis.com/wp-content/uploads/2011/07/before-L1040826.jpg"><img class="size-full wp-image-21748" title="before-L1040826" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/before-L1040826.jpg" alt="Original" width="300" height="400" /></a><p class="wp-caption-text">Original 124 Kb</p></div>
<p>… after some basic editing …</p>
<div id="attachment_21747" class="wp-caption alignnone" style="width: 310px"><a href="http://yorgonestoridis.com/wp-content/uploads/2011/07/after-L1040826.jpg"><img class="size-full wp-image-21747" title="after-L1040826" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/after-L1040826.jpg" alt="Edited 153 Kb" width="300" height="400" /></a><p class="wp-caption-text">Edited 153 Kb</p></div>
<p>… for web and devices with reduced JPEG quality.</p>
<div id="attachment_21746" class="wp-caption alignnone" style="width: 310px"><a href="http://yorgonestoridis.com/wp-content/uploads/2011/07/30-L1040826.jpg"><img class="size-full wp-image-21746" title="30-L1040826" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/30-L1040826.jpg" alt="30% JPEG for Web 27 Kb" width="300" height="400" /></a><p class="wp-caption-text">30% JPEG for Web 27 Kb</p></div>
<p>Editingand post editing have a lot to do with the purpose of the image as well as on the destination platform. We will look into different options and detail specific requirements for the mobile web.</p>
<span id="OnOne_Professional_Photo_Editing_Tools"><h3>OnOne Professional Photo Editing Tools</h3></span>
<p>The above sample shows that editing makes the image heavier! The more filters, masks and brushes we apply the more Kb we ad and the slower the image will load once on the site. Here it is getting interesting: the above image counts 124 Kb as shot (it has just been cropped to 300 pixels wide), then we have added 29 px while editing and in the end reduced the JPEG quality to end up with a final 27 Kb, i.e. 2 Kb less than what we added by editing, amd yet, the image is more dynamix, vibrant and sharper.</p>
<p>In order to use editing tools efficiently, we must acquire some knowledge about the different filters and masks. We need to learn some terminology and we need to learn to translate the desired results into professional lingo, so that we use the appropriate tool to achieve the desired result.</p>
<p>The absence of such knowledge results in a “roulette approach” and therefore to unpredictable results and bloated file sizes.</p>
<p><strong>Publishing Images and Photos with Semiomantics XO on WordPress</strong></p>
<p>With WordPress 3 many new features became available and Semiomantics exploits them with the recent XO versions. In as much as images, videos and galleries are concerned, XO provides special post formates which are ideal for Media Publishng.</p>
<p>We will explain the custom formates and how to create a specific media feed stream throughout an XO publishing Network.</p>
<span id="Build_a_Photo_Blog"><h3>Build a Photo Blog</h3></span>
<p>To apply the new skills and knowledge, we will build a photo content management system on XO. To anticipate the work and to make the best use of the time we dispose of, we will start building the Photo Site during the 2 Pre-Seminar calls on Tuesday and Thursday next. During these two sessions we will namely focus on customization and design of the XO to end up with a photo site which will provide multiple media streams to be used on other sites of the network.</p>
<span id="Schedule"><h3>Schedule</h3></span>
<p>July 30 — 31, 2011 as usual starting at 1 pm London Time each day and ending at 9 pm London Time.</p>
<span id="Tickets"><h3>Tickets</h3></span>
<p>Tickets: $85 with the usual special discount of $50 for Ycademy Pros; please get the Ycademy Pro Discount code from Bianca (@) ycademy.com as usual.</p>
<div id="attachment_21750" class="wp-caption alignnone" style="width: 470px"><a href="http://shop.yorgonestoridis.com/web-site-development/ycademy-seminar-july-2011/"><img class="size-large wp-image-21750" title="512x512-ycademy-shop-july" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/512x512-ycademy-shop-july-460x460.png" alt="Ycademy Online Seminar July 2011" width="460" height="460" /></a><p class="wp-caption-text">Click on the Image to get your Ticket — Thank You.</p></div>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/how-to-publish-digital-photos/" title="edit and publish photos">edit and publish photos</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/how-to-publish-digital-photos/" title="publishing digital photography">publishing digital photography</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/how-to-publish-digital-photos/" title="publish jpg to web">publish jpg to web</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/how-to-publish-digital-photos/" title="publish edited photos online">publish edited photos online</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/how-to-publish-digital-photos/" title="Publish Digital Photos on WordPress">Publish Digital Photos on WordPress</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/how-to-publish-digital-photos/" title="jpeg quality kb">jpeg quality kb</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/how-to-publish-digital-photos/" title="ideas for digital media design seminar">ideas for digital media design seminar</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/how-to-publish-digital-photos/" title="how to publish photo in wordpress">how to publish photo in wordpress</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/how-to-publish-digital-photos/" title="how to publish digital photos">how to publish digital photos</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/how-to-publish-digital-photos/" title="how to publish digital photographs">how to publish digital photographs</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-1/' rel='bookmark' title='Digital Photography Ycademy 1'>Digital Photography Ycademy 1</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/' rel='bookmark' title='Digital Photography Ycademy 10'>Digital Photography Ycademy 10</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-8/' rel='bookmark' title='Digital Photography Ycademy 8'>Digital Photography Ycademy 8</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-and-photo-editing/' rel='bookmark' title='Digital Photography and Photo Editing'>Digital Photography and Photo Editing</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photo-ycademy-4/' rel='bookmark' title='Digital Photography Ycademy 4'>Digital Photography Ycademy 4</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/how-to-publish-digital-photos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YORGOO Press Aggregators for WordPress</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/#comments</comments>
		<pubDate>Sat, 16 Jul 2011 13:57:30 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WP Best Newspaper Theme]]></category>
		<category><![CDATA[YORGOO Press]]></category>
		<category><![CDATA[WordPress Aggregators by Semiomantics]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=21720</guid>
		<description><![CDATA[XO Press Aggregator Script for WordPress Brilliant new YORGOO Press set ups! After the recent move from News Cast scripts to Semiomantics XO, and the clean out after an important hack, the YORGOO Press sites have been set up with a new structure, whereas each site got it’s own independance. Here some screenshots of the recent YORGOO Press Developments on Semiomantics XO. Incoming search terms:wordpress aggregatornews aggregator theme wpbest wordpress aggregator pluginusing Wpnewspaperbest wordpress aggregationwordpress as a new aggregatortop newspaper themesles sites qui utilisent Wpnewspaperhow to create an aggregator wordpress siteYORGOO Press Aggregators for WordPressRelated posts: New YORGOO Plugin for YORGOO Press YORGOO Press NewsCast YORGOO and Semiomantics launch YORGOO Press New Theme for YORGOO Press YORGOO PRESS New Servers
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/new-yorgoo-plugin-for-yorgoo-press/' rel='bookmark' title='New YORGOO Plugin for YORGOO Press'>New YORGOO Plugin for YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-nnews-cast/' rel='bookmark' title='YORGOO Press NewsCast'>YORGOO Press NewsCast</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/yorgoo-press-by-yorgoo-and-semiomantics/' rel='bookmark' title='YORGOO and Semiomantics launch YORGOO Press'>YORGOO and Semiomantics launch YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/yorgoo-press/new-theme-for-yorgoo-press/' rel='bookmark' title='New Theme for YORGOO Press'>New Theme for YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/yorgoo-press/yorgoo-press-new-servers/' rel='bookmark' title='YORGOO PRESS New Servers'>YORGOO PRESS New Servers</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="XO_Press_Aggregator_Script_for_Wordpress"><h2>XO Press Aggregator Script for WordPress</h2></span>
<p>Brilliant new YORGOO Press set ups! After the recent move from News Cast scripts to Semiomantics XO, and the clean out after an important hack, the YORGOO Press sites have been set up with a new structure, whereas each site got it’s own independance.</p>
<p>Here some screenshots of the recent YORGOO Press Developments on Semiomantics XO.</p>

<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/attachment/screen-mattersnews/' title='screen-mattersnews'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/screen-mattersnews-200x150.jpg" class="attachment-thumbnail" alt="screen-mattersnews" title="screen-mattersnews" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/attachment/screen-omaute/' title='screen-omaute'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/screen-omaute-200x150.jpg" class="attachment-thumbnail" alt="screen-omaute" title="screen-omaute" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/attachment/screen-thelalakoipost/' title='screen-thelalakoipost'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/screen-thelalakoipost-200x150.jpg" class="attachment-thumbnail" alt="screen-thelalakoipost" title="screen-thelalakoipost" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/attachment/screen-times/' title='screen-times'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/screen-times-200x150.jpg" class="attachment-thumbnail" alt="screen-times" title="screen-times" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/attachment/screen-touchvisiontalk/' title='screen-touchvisiontalk'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/screen-touchvisiontalk-200x150.jpg" class="attachment-thumbnail" alt="screen-touchvisiontalk" title="screen-touchvisiontalk" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/attachment/screen-ypress/' title='screen-ypress'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/screen-ypress-200x150.jpg" class="attachment-thumbnail" alt="Best WordPress Publishing Framework" title="screen-ypress" /></a>

<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/" title="wordpress aggregator">wordpress aggregator</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/" title="news aggregator theme wp">news aggregator theme wp</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/" title="best wordpress aggregator plugin">best wordpress aggregator plugin</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/" title="using Wpnewspaper">using Wpnewspaper</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/" title="best wordpress aggregation">best wordpress aggregation</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/" title="wordpress as a new aggregator">wordpress as a new aggregator</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/" title="top newspaper themes">top newspaper themes</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/" title="les sites qui utilisent Wpnewspaper">les sites qui utilisent Wpnewspaper</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/" title="how to create an aggregator wordpress site">how to create an aggregator wordpress site</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/" title="YORGOO Press Aggregators for WordPress">YORGOO Press Aggregators for WordPress</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/new-yorgoo-plugin-for-yorgoo-press/' rel='bookmark' title='New YORGOO Plugin for YORGOO Press'>New YORGOO Plugin for YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-nnews-cast/' rel='bookmark' title='YORGOO Press NewsCast'>YORGOO Press NewsCast</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/yorgoo-press-by-yorgoo-and-semiomantics/' rel='bookmark' title='YORGOO and Semiomantics launch YORGOO Press'>YORGOO and Semiomantics launch YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/yorgoo-press/new-theme-for-yorgoo-press/' rel='bookmark' title='New Theme for YORGOO Press'>New Theme for YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/yorgoo-press/yorgoo-press-new-servers/' rel='bookmark' title='YORGOO PRESS New Servers'>YORGOO PRESS New Servers</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/yorgoo-press-aggregators-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>XO Mobile Theme with WPTouch Pro</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 14:21:07 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Author Blog]]></category>
		<category><![CDATA[Auto Parts Theme for WordPress]]></category>
		<category><![CDATA[FBlaster]]></category>
		<category><![CDATA[FBlogster]]></category>
		<category><![CDATA[Personal XO 2011]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WordPress Training]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[WP Best Business Theme]]></category>
		<category><![CDATA[Best WordPress Theme]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[for]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[XO]]></category>
		<category><![CDATA[XO WordPress Theme]]></category>

		<guid isPermaLink="false">http://semiomantics.com/xo/?p=64</guid>
		<description><![CDATA[How to customize WPTouch Pro for XO Customizing your WPTouch Pro skin is similar to customizing your XO all together, In fact, from an ...
No related posts.]]></description>
			<content:encoded><![CDATA[<span id="How_to_customize_WPTouch_Pro_for_XO"><h2>How to customize WPTouch Pro for XO</h2></span>
<div class='toc wptoc'>
<h2>Contents</h2>
<ol class='toc-odd level-1'>
	<li>
		<a href="#How_to_customize_WPTouch_Pro_for_XO">How to customize WPTouch Pro for XO</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#XO_Mobile_Default_Skin">XO Mobile Default Skin</a>
			</li>
			<li>
				<a href="#For_your_inspiration_here_are_the_custom_styles_used:">For your inspiration, here are the custom styles used:</a>
			</li>
</ol>
</ol>
</ol>
</div>
<div class='wptoc-end'> </div>
<p>Customizing your WPTouch Pro skin is similar to customizing your XO all together, In fact, from an editing and design point of view, be prepared to some work! To display your Mobile XO on multiple platforms of the mobile web, you need to take into account the different screen resolutions and of course screen sizes, which means that you may have to load different versions of your graphics and images.</p>
<span id="XO_Mobile_Default_Skin"><h3>XO Mobile Default Skin</h3></span>
<p>For the purpose of the XO Blog Mobile version, I have thought about sticking to my preferred design colors and fonts: red and gray scale as well as Helvetica for easy reading.</p>
<p><a href="http://semiomantics.com/xo/wp-content/uploads/2011/06/xo-mobile-2.png"><img class="alignnone size-medium wp-image-66" title="xo-mobile-2" src="http://semiomantics.com/xo/wp-content/uploads/2011/06/xo-mobile-2-300x450.png" alt="XO Mobile Theme for WordPress" width="300" height="450" /></a></p>
<p>As you can see, from the above blog home, I have taken out backgrounds, round corners, paddings and margins to just separate posts by a dotted line. Header size, icons and post thumbnails have been increased in size for a better surf experience.</p>
<p>The menu page underwent the same cure:</p>
<p><a href="http://semiomantics.com/xo/wp-content/uploads/2011/06/xo-mobile-3.png"><img class="alignnone size-medium wp-image-67" title="xo-mobile-3" src="http://semiomantics.com/xo/wp-content/uploads/2011/06/xo-mobile-3-300x450.png" alt="XO Mobile Theme for WordPress menu" width="300" height="450" /></a></p>
<p>As you know, I like it bold and minimalist and I guess it’s pretty much what you get here.</p>
<p>The same style you find on pages, such as the author page which includes the contact form:</p>
<p><a href="http://semiomantics.com/xo/wp-content/uploads/2011/06/xo-mobile-1.png"><img class="alignnone size-medium wp-image-68" title="xo-mobile-1" src="http://semiomantics.com/xo/wp-content/uploads/2011/06/xo-mobile-1-300x450.png" alt="XO Mobile Theme for WordPress Page" width="300" height="450" /></a></p>
<span id="For_your_inspiration_here_are_the_custom_styles_used:"><h3>For your inspiration, here are the custom styles used:</h3></span>
<pre class="brush: php; title: ; notranslate">

/*WPTouch Pro Style for Semiomantics XO Mobile
Author: Yorgo Nestoridis
Style URL: http://semiomantics.com/xo/xo/xo-mobile-them…th-wptouch-pro
Designed for Semiomantics XO Blog at http://semiomantics.com/xo
tags:mobile theme for wordpress, wordpress mobile, xo, mobile, semiomantics xo.
Date: June 29, 2011
*/
.post .thumbnail-wrap {position: relative;float: left;display: block; height: 90px;width: 120px;margin-right: 8px;}
.post img.attachment-post-thumbnail {width: 120px;height: 90px;border:2px #FFF;}
body.wptouch-pro {background:#fff;}
.clean-white a#logo-title {color:#000000 !important; text-shaddow:none !important;text-shadow:none !important;font-variant:small-caps;font-size:24px;font-style:bold;}
.clean-white #header {background:#FFFFFF;color:#000;height:70px;border-bottom:3px double #000;}
.clean-white a#header-menu-toggle {background: #D40000;width:40px;height:40px;}
.clean-white #tab-bar {background:#ffffff;border-top:3px double #000;}
img#logo-icon {width:57px;height:57px;}
#main-menu{margin-top:18px;}
.post {padding:0px !important;margin:1px 3px 0 3px;border-bottom: 1px dotted #222222;border-top:0 !important;!important;border-left:0 !important;}
.post h2, .post h2 a {font-weight:bold;}
#content{margin-top:9px;}
a#logo-title {padding-top:22px;}
a.read-entry {background:#d40000;color:#FFFFFF;margin-bottom:5px;}
.post.page-title-area img{width:114px;height:114px;}
#main-menu ul li img {width:48px;height:48px;}
.clean-white #main-menu ul li a {background:none;color:#111111;}
.rounded-corners-8px {border-radius:0;}
a.read-entry {margin-left:10px;}
</pre>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/" title="wordpress autoparts theme">wordpress autoparts theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/" title="xomobile">xomobile</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/" title="wordpress autoparts themes">wordpress autoparts themes</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/" title="wptouch pro examples">wptouch pro examples</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/" title="wp touch pro themes">wp touch pro themes</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/" title="wordpress automotive parts theme">wordpress automotive parts theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/" title="wptouch pro themes">wptouch pro themes</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/" title="WPtouch Pro">WPtouch Pro</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/" title="wptouch customize">wptouch customize</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/" title="wp touch customize">wp touch customize</a></li></ul><p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

