Category Archives: Free Press

Verify Your Google+ Business Page

  1. Make your Google+ plus business page if you don’t have one.
  2. Your Google+ page should be authorized by your business, organization, brand or product etc.
  3. Your Google+ page’s profile should have a link to your business’s website.
  4. Your business’s website should connect to your Google+ page. This is done by adding the Google+ Badge/Code
  5. People (near about 999) must have added your Google+ page to their circles.
  6. You must be authorized as administer.
  7. Contrast your page with Google Terms of Service and Google+ Content – Conduct Policies
  8. Visit: http://support.google.com/plus/bin/request.py?hl=en&contact_type=page_verification&rd=1  fill in the request form and send it
  9. Now wait for approval.

Move Across WordPress Draft, Pending And Publish Post Statuses

Don’t use register_post_status before init. Register Post Status is a function used to create and modify post status based on given parameters. register_post_status() function is located in wp-includes/post.php It accepts following two parameters:

  • $post_status means a string for the post status name
  • $args means an array of arguments

<?php register_post_status( $post_status, $args ); ?>

Example:
(Following example registers “Unread” post status:

function my_custom_post_status(){
register_post_status( ‘unread’, array(
‘label’ => _x( ‘Unread’, ‘post’ ),
‘public’ => true,
‘exclude_from_search’ => false,
‘show_in_admin_all_list’ => true,
‘show_in_admin_status_list’ => true,
‘label_count’ => _n_noop( ‘Unread <span class=”count”>(%s)</span>’, ‘Unread <span class=”count”>(%s)</span>’ ),
) );
}
add_action( ‘init’, ‘my_custom_post_status’ );

Where:

  • label is a descriptive name for the post status marked for translation.
  • public – Set true to show posts of this status in the front end. Defaults to false.
  • exclude_from_search – Set true to exclude posts with this post status in search results. Defaults to false.
  • show_in_admin_all_list – Defines whether to include posts in the edit listing for their post type.
  • show_in_admin_status_list – Shows in the list of statuses with post counts. Example: Published (12)
  • label_count – The text to display on admin screen or you won’t see status count.

Find A Perfect App In Chrome Web Store By Taking A Little Help From Your Google+ Friend Circles

Now Google Chrome Web Store helps you to share all your Google Chrome’s  items in your Google+ Circles. You may do so by finding them in Chrome’s Web Store and clicking +1 (located in store detail page).

And by clicking “From your circles” (located in Chrome Web Store’s category menu) you can review different apps and themes recommended by your friends. Now it is easy to find right app, you would be getting app suggestions from Chrome Web Store on the basis of all that apps +1’d by your friend circle in Google+.

How To Add Facebook Chat On Firefox Sidebar

1. Open Firefox browser.

2. Move to top navigation menu

3. Select Bookmarks >> New Bookmark

4. Place a new bookmark with following details:

  • Name it “Facebook Chat”
  • Set location at http://www.facebook.com/presence/popout.php
  • Check this “load this bookmark in sidebar”

5. Load Firefox sidebar from View >>Sidebar >> Booksmarks

Show Related Posts In Your WordPress Blog Without Using Any Plugin

Copy and Paste the given code within the loop. It may engage your blog visitors to stay for a longer time:

<?php
//for use in the loop, list 5 post titles related to first tag on current post
$tags = wp_get_post_tags($post->ID);
if ($tags) {
echo ‘Related Posts’;
$first_tag = $tags[0]->term_id;
$args=array(
‘tag__in’ => array($first_tag),
‘post__not_in’ => array($post->ID),
‘showposts’=>5,
‘caller_get_posts’=>1
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<p><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”Permanent Link to <?php the_title_attribute(); ?>”><?php the_title(); ?></a></p>
<?php
endwhile;
}
}
?>

This code displays posts related to current post. It is based on tags. You may change the number of posts it displays, just change ‘showposts’=>5 with your number.

Display Popular Posts In Your WordPress Blog’s Sidebar Without Using Any Plugin

You can highlight most popular content of your WordPress site in your sidebar. Copy-Paste the following code in your theme’s sidebar.php file:

<h2>Popular Posts</h2>
<ul>
<?php $result = $wpdb->get_results(“SELECT comment_count,ID,post_title
FROM $wpdb->posts ORDER BY comment_count DESC LIMIT 0 , 5″);
foreach ($result as $post) {
setup_postdata($post);
$postid = $post->ID;
$title = $post->post_title;
$commentcount = $post->comment_count;
if ($commentcount != 0) { ?>
<li><a href=”<?php echo get_permalink($postid); ?>” title=”<?php echo
$title ?>”>
<?php echo $title ?></a> {<?php echo $commentcount ?>}</li>
<?php } } ?>
</ul>

It displays most popular posts on your site’s sidebar.

For changing the number of posts to display in your sidebar:

Look-up for this line in the above code block: FROM $wpdb->posts ORDER BY comment_count DESC LIMIT 0 , 5″); and Replace 5 with the number of posts you like to display.

Easiest Way for Displaying both Popular and Unpopular Posts in your Sidebar:

Now easiest way to do this (display popular posts) and many other similar things like displaying both popular and unpopular posts, knowing the number of post hits is to use Most and Least Read Posts Widget Plugin

Download from the link, activate it and start using it by placing its widgets in your sidebar. It gives you two different widgets one shows most read posts and the other shows least read posts and also it counts your post hits both on sidebar and in your dashboard All Posts list.

Add “Pin It” Button To Your Google Chrome’s Bookmark Bar

For installing “Pin It” button in your Chrome:

  1. Visit Pinterest Goodies.
  2. Display your bookmark bar if it is hidden: Visit Wrench Icon (present at the top right corner of chrome) >> Bookmarks >> Check Show Bookmarks Bar
  3. There is a “Pin It” button on that page. Drag it to your bookmark bar.
  4. Now while browsing the web you can pin any image by pressing this “Pin It” button.

Watch this video tutorial:

[iframe][/iframe]

Add ‘Pin It’ Button To Images In Your WordPress Blog

Without using Plugin: Add this code to your theme’s footer.php file before the </body> tag. Get Pinterest’s javascript at Goodies.

<script type=”text/javascript” src=”//assets.pinterest.com/js/pinit.js”></script>

Add this code to your theme’s single.php file wherever you want Pin It button to be visible:

<a href=”http://pinterest.com/pin/create/button/?url=<?php the_permalink(); ?>&media=<?php echo catch_that_image() ?>&description=<?php the_title(); ?>” class=”pin-it-button” count-layout=”horizontal”><img border=”0″ src=”//assets.pinterest.com/images/PinExt.png” title=”Pin It” /></a>

Add this code in your theme’s functions.php file:

function catch_that_image() {
global $post, $posts;
$first_img = ”;
ob_start();
ob_end_clean();
$output = preg_match_all(‘/<img.+src=[‘”]([^'”]+)[‘”].*>/i’, $post->post_content, $matches);
$first_img = $matches [1] [0];
if(empty($first_img)){ //Defines a default image
$first_img = “/images/default.jpg”;
}
return $first_img;
}

Or You may use a WordPress plugin and that would be more easy for you. Use this plugin Pinterest Pin It Button For Images. Either search it on WP Plugin search or click the link and upload the folder to the /wp-content/plugins/ directory, Activate from ‘Plugins’ menu and Enjoy.

Hide Post Images Without Removing Thumbnail Image In Category Archive

Given code hides post images but keeps thumbnail image in Category archive and homepage. Add following code block in your theme’s function.php:

function wpi_image_content_filter($content){

if (is_home() || is_front_page() || is_category()){
$content = preg_replace(“/<img[^>]+>/i”, “”, $content);
}

return $content;
}
add_filter(‘the_content’,’wpi_image_content_filter’,11);

Facebook Marketing Team Released Facebook Posters For Your Business

Facebook marketing team has released posters that you can use in your business stores after printing them. Its PDF so you can print them and put it in your office, stores or anywhere you want to encourage your clients, customers and others who visit your business place to join your page on Facebook. Also if you like you may put it in your website linking to your Facebook page but these posters are better for using as printable posters and for websites those old Facebook badges are fine.

Download all posters from here: http://ads.ak.facebook.com/ads/FacebookAds/Facebook_Signs.pdf

WordPress’s VIP Team Launched New Plugin That Controls Bulk User Management On Multisite Network

VIP team launched new plugin which is capable enough to control and manage all users across many sites in a multisite network install. It can check all network users and their roles on different sites sites and helps you to edit users, user roles on different sites at a time without visiting their dashboard from All Sites Super Admin Menu.

Facebook Is Less Trusted With Personal Data Than Others

Fewer Internet users trust Facebook with personal data than other Internet companies.

According to Harris Interactive Inc. Survey:-

  • 1/3rd Internet users says that they are comfortable with Facebook’s policy of handling personal information
  • 41% respondents trust Google to show ads based on past Web searches.
  • 66% percent, are comfortable with Amazon using data on past purchases to recommend products.

Your WordPress P2 Blog Can Now Be A Full-Blown Issue Tracker

You can now have your WordPress blog as a full-blown issue tracker with Recently updated Resolved/Unresolved Posts Plugin. Test it live here in this post. Check Resolved/Unresolved button at the top right corner of this post.

  • Green posts are resolved issues.
  • Red posts are unresolved issues.

You also get a sidebar widget for quick overview of resolved and unresolved posts.

Source: http://kovshenin.com/2012/wordpress-as-an-issue-tracker/

Google+ Increased At The Rate Of 43.1% Reaches To 31.9 Million Unique Visitors

The June social network traffic numbers from Compete.Com confirms that Google+ got huge traffic increase in June. It got 31.9 million visitors in June whereas 22.3 million visitors in May, Increased at the rate of 43.1%. Google+ gained 14.2 million visitors this year. According to Experian Hitwise Google+ had 0.85% of the visits to US social networks in June, compared to 0.63% in May.

Since the year started, Google+ has gained 14,2 million visitors, from 17,6 million visitors in December to 31,9 million visitors in June. For the first time, according to Compete statistics, Google+ is now larger than Linkedin, who had 24,6 million visitors in June. Linkedin had a 6,5% decrease in visitors in June compared to May.

_____

Bypassing Social Reader Apps In Facebook

Many Facebook stories that appear on your newsfeed require Social Reader App to open access so you can read them. The main problem with the Social Reader App is that it broadcasts your profile activity to newsfeed of other sites hence each of your friend know what you are reading on Internet. If you don’t want your friends to know what you are reading then you should bypass the Social Reader App:

  • In most cases Facebook offers cancel button whenever you click any link that require Social Reader App. Clicking cancel button redirects you to the article without publishing it on other networks.
  • Some Social Reader Apps like Yahoo when posts links on newsfeed doesn’t give cancel button and immediately posts the link on your Timeline. In such condition move to: Privacy Settings >> Ads, Apps and Websites >> Edit >> Apps you use >> Edit Settings >> Select your App >> Click Edit And Now select “Only Mean” on Posts on your behalf . This manages who can see posts this app makes for you on your Facebook Timeline.
  • Now the easiest way to read any article that requires Social Reader without letting anybody know is to copy the heading of that article and paste it on Google search and read it. Actually all those articles that require Social Reader on Facebook are open on the web so you can read them from somewhere else.
  • If you need to block Social Reader App permanently then open App Menu present on your Facebook’s Homepage, look for Social Reader and click [x]  to remove it.