• My site’s URL (web address) is:https://www.realwebmarket.com/blog

    Hello all,

    Since last one month I am trying to add Author profile to my blog/blog-posts(integrated wordpress blog). I have found several suggestions regarding in which all of them have a common solution: create author.php file and add to your wp-theme, sth like that. As I have no technical knowledge I found the suggestions too complicated and failed to create author profile!

    Fortunately today, I have noticed Mattcutts tweeting about Author profile referring to this link: https://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=1408986. However, if I have to get this Author Profile link to every blog post I publish, I think its the same way how I should be doing in the above case! But I think it is not as complicated as creating a personal author profile because the code is all ready but I just have to find place to display it.

    When I referred to some of the blogs they suggest me to place it in the loop, singlepost.php file but I am not sure about it!
    So now could some help me how and where should I place this Google Author profile link in my wordpress based blog?

    If Single Post(single.php) file is where I need to add this link, here is the code I have it on my single.php file:

    <?php $aOptions = get_option(‘eos_options’); ?>
    <?php get_header(); ?>

    <div id=”contentWrapper”>
    <div id=”contentArea”>
    <?php if(function_exists(‘dynamic_sidebar’) && $aOptions[‘enableHBPosts’]): ?>
    <div class=”headerBar”>
    <?php dynamic_sidebar(‘header_bar’) ?>
    </div>
    <?php endif; ?>

    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>

    <div class=”post” id=”post-<?php the_ID(); ?>”>
    <div class=”postHeader”>
    <h2 class=”postTitle”><span></span>” title=”<?php _e(‘Permalink to’, ‘Eos’); ?> <?php the_title(); ?>”><?php the_title(); ?></h2>
    <span class=”postMonth” title=”<?php the_time(‘Y’) ?>”><?php the_time(‘M’) ?></span>
    <span class=”postDay” title=”<?php the_time(‘Y’) ?>”><?php the_time(‘j’) ?></span>
    <div class=”postSubTitle”><span class=”postCategories”><?php the_category(‘, ‘); ?></span></div>
    </div>
    <div class=”postContent”><?php the_content(); ?></div>
    <div class=”postLinkPages”><?php wp_link_pages(‘before=‘.__(‘Pages:’, ‘Eos’).’&pagelink=<span>’.__(‘Page %’, ‘Eos’).'</span>’); ?></div>
    <div class=”postFooter”>
    <?php if ( function_exists(‘the_tags’) ) : ?><span class=”postTags”><?php if (get_the_tags()): the_tags(”, ‘, ‘, ”); else: ?><span><?php _e(‘none’, ‘Eos’); ?></span><?php endif; ?></span><?php endif; ?>
    <?php edit_post_link(__(‘Edit’, ‘Eos’),”,”); ?>
    </div>
    </div>

    <div id=”comments”>
    <?php comments_template(); ?>
    </div>

    <div id=”postExtra”>
    <span class=”rss”><?php comments_rss_link(__(‘<abbr title=”Really Simple Syndication”>RSS</abbr> feed for this post (comments)’, ‘Eos’)); ?></span>
    </div>

    <?php endwhile; ?>

    <?php if(function_exists(‘dynamic_sidebar’) && $aOptions[‘enableFBPosts’]): ?>
    <div class=”footerBar”>
    <?php dynamic_sidebar(‘footer_bar’) ?>
    </div>
    <?php endif; ?>

    <?php else : ?>

    <p><?php _e(‘Sorry, but you are looking for something that isn\’t here. You can search again by using the form on upper right of the page…’, ‘Eos’); ?></p>

    <?php endif; ?>

    </div>

    <?php get_sidebar(); ?>

    </div>

    <?php get_footer(); ?>

    Please suggest me where to add the Google Author link to get display it on every post of my blog.

Viewing 1 replies (of 1 total)
  • Nice blog look. It looks like you are making this too complicated.

    Your title says you want to add Google Plus one.

    It’s as simple as loading up the plugin and you can set the plus one to show up on top or bottom of your posts and pages.

    See my blog here where I loaded up the plugin: howtomakemoneyblogging.net

    I tried going about this the hard way and then just went with the plugin.

Viewing 1 replies (of 1 total)
  • The topic ‘Need your help to add Google 1 to my WordPress Blog’ is closed to new replies.