Wordpress Homepage excerpt question

blogspotter

WF Premium Member
Jun 29, 2007
2,879
104
0
Interwebz
I would like to only show the whole content to google but use an excerpt for the visitors..

No I am not talking about keyword stuffing or anything like that.
I want a legitimate way using jquery or any existing wordpress them functions, like what you have with Elegant themes.

What I want to do is only show an excerpt of the sticky post on the home page.
Visitors will click expand/read more to get the whole content.. Like Ajax or something.. The kind that you see using tabbed view on some themes..

But I would like google to read the whole content.
Only visitors will see the excerpt.. But I want google to read the whole 2000 words of content...

Or do google read the whole article in an excerpt by default...
I used to toool to see how google views my content.. It only reads excerpt for now.
 


simple jQuery.
this should do the trick:

HTML
Code:
This is my intro paragraph.
<span id="showMore1">Read the rest</span>
<div id="hiddenStuff">This is the rest of my content in a hidden div</div>

CSS
Code:
#hiddenStuff {display: none;}

jQuery
Code:
<script type="text/javascript">
    $(document).ready({
        $("#showMore1").click({
            $("#hiddenStuff").toggle();
        });
    });
</script>

Oh, and about Google.
Don't worry about it. Lots of sites hide stuff with CSS to be shown with JavaScript.