12
Jan
$myquery['tax_query'] = array(
	'relation' => 'OR',
	array(
		'taxonomy' => 'category',
		'terms' => array('cat1'),
		'field' => 'slug',
	),
	array(
		'taxonomy' => 'post_tag',
		'terms' => array('tag1'),
		'field' => 'slug',
	),
);
query_posts($myquery);
$myquery['tax_query'] = array(
	array(
		'taxonomy' => 'category',
		'terms' => array('cat1', 'cat2'),
		'field' => 'slug',
		'operator' => 'NOT IN',
	),
);
query_posts($myquery);
11
Jan
$myquery['tax_query'] = array(
	array(
		'taxonomy' => 'category',
		'terms' => array('category1'),
		'field' => 'slug',
	),
	array(
		'taxonomy' => 'post_tag',
		'terms' => array('tag1'),
		'field' => 'slug',
	),
);
query_posts($myquery);

Author: Tom Larson

Social book-marking is a powerful tool and it will help to increase your web site’s traffic the fastest way possible. When a user bookmarks your site it creates a link from the social network and helps to build a stronger search engine’s page rank. This is a unique way to go about link building and making a strong on line marketing background. These sites can help you feature your products or services on line, but you have to avoid any spamming as this may cause a fast ban of your account. Social book-marking sites will provide you with public profiles and these profiles will have a link of your web sites on their home-pages. It is possible to build up 300 or more profiles and use the same linking strategy to have a good deal of exposure.

Some people use automated social book-marking applications – are they any good? These program definitely can make a new user account very fast and save you time, however not all of the applications will do good for you. Social media sites are smart and can detect these automated applications and block them as spam. You see the text and links provided by the programs are not consistent in posting tags and have the same IP address for all the account it makes.

Make sure to have your tags related to the story to achieve some good results. Use your web site’s main keyword in all the listing you make, so other users can find it more easily. There are hundreds of social book-marking sites around the Internet, so it might be hard to choose the right ones. Some of the well known sites are: Digg, Propeller, StumbleUpon, Blinklist. Some of these sites offer community building, which is a great feature to connect people with the same interests and beliefs.

So use social media web sites and share your links with the World. Start receiving fresh web site traffic today and increase your on line profits. Also don’t forget the power of the these social sites: Facebook and Myspace, every web site owner should have an established page with the new content promoting their online establishments.

Article Source: http://www.articlesbase.com/seo-articles/the-power-of-social-book-marking-for-your-web-sites-5379908.html

About the Author

Tom has been writing articles for many years now. Discussing a whole range of subjects such as affiliate marketing, pets, fitness and weight loss. You can also check out his latest website that discusses how to get best Hotel Deals and find Cheap Hotels – low prices, but a 5-star service.

09
Nov

Author: linkbuilder2011

Thought I’d nip this in the bud ……its a question you may ask yourself – when launching a Website or Blog – “When do I start SEO on my website?”.

If you have selected a reputable web design company then it will be in both interests – that SEO is discussed… remember there’s no point having the latest website – bells and whistle – but no one can find you on the Web …. a nightmare scenario – but it happens all the time…..BEWARE!

Check out these 10 things that are VITAL for a successful SEO campaign…..as always with The Link Builder – you will find the budget required to follow these steps is £0.

1) Start SEO before your website is LIVE – you should know your URL and keywords so what’s stopping you?

2) Create unique content for your website – well written, engaging – and have relevant links going back to your home page wherever possible

3) Attempt to connect with other communities in your business industry – this may open up discussion for links back to your websites

4) Never overlook META descriptions or titles – never forget these encourage viewers to click through to your website as they appear for your listing

5) Utilise Facebook, LinkedIn, Twitter – don’t believe the hype – regardless of how we or our Clients feel about them – they can and will gain you more business and get your brand out there! Look at the map below Facebook (green on map) is leading the way – remember it’s FREE:

Facebook leads the way indicated in green on the map!

6) Blog about your company as much as possible

7) Use local listing directories

8) Have a Google Places – listing

9) Install and implement both Google Analytics and Webmaster Tools – this will you give an indication to your websites performance and keywords since starting your campaign – of course for 100% exact results I personally – use the Search Engine themselves as its more reliable.. ensure your search settings in Google are NOT on local – but UK pages (if your in the UK that is of course)

10) Create Sitemaps – not only will it give your visitors all the pages on the website – but also lets the indexing bot’s know what’s
exactly on website – vital

Good Luck!

Article Source: http://www.articlesbase.com/seo-articles/when-do-i-start-seo-5379458.html

About the Author

Welcome to the link builder blog, discussing and sharing organic SEO techniques and tips with the community.

function myfeed_request($qv) {
if (isset($qv['feed']) && !isset($qv['post_type']))
$qv['post_type'] = array(‘post’, ‘banner’);
return $qv;
}
add_filter(‘request’, ‘myfeed_request’);

function add_count() {

if (!post_type_exists($this->type)) {
return;
}

$num_posts = wp_count_posts( $this->type );
$num = number_format_i18n( $num_posts->publish );
$text = _n( $this->single, $this->plural, intval($num_posts->publish) );

if ( current_user_can( ‘edit_posts’ ) ) {
$num = “<a href=’edit.php?post_type=” . $this->type . “‘>$num</a>”;
$text = “<a href=’edit.php?post_type=” . $this->type . “‘>$text</a>”;
}

echo ‘<td>’ . $num . ‘</td>’;
echo ‘<td>’ . $text . ‘</td>’;
echo ‘</tr>’;

if ($num_posts->pending > 0) {
$num = number_format_i18n( $num_posts->pending );
$text = _n( $this->single . ‘ Pending’,  $this->plural . ‘ Pending’, intval($num_posts->pending) );
if ( current_user_can( ‘edit_posts’ ) ) {
$num = “<a href=’edit.php?post_status=pending&post_type=” . $this->type . “‘>$num</a>”;
$text = “<a href=’edit.php?post_status=pending&post_type=” . $this->type . “‘>$text</a>”;
}

echo ‘<td>’ . $num . ‘</td>’;
echo ‘<td>’ . $text . ‘</td>’;
echo ‘</tr>’;
}
}
add_action(‘right_now_content_table_end’, array($event_post_type, ‘add_count’));

<files wp-config.php>
order allow,deny
deny from all
</files>

03
Nov

add_filter( ‘admin_footer_text’, ‘my_admin_footer_text’ );
function my_admin_footer_text( $default_text ) {
return ‘<span id=”footer-thankyou”>Website redeveloped by <a href=”http://www.webexperts4u.com” target=”_blank”>WebExperts</a><span> | Powered by <a href=”http://www.wordpress.org” target=”_blank”>WordPress</a>’;
}

function myfeed_request($qv) {
if (isset($qv['feed']) && !isset($qv['post_type']))
$qv['post_type'] = array(‘post’, ‘banner’);
return $qv;
}
add_filter(‘request’, ‘myfeed_request’);