How to create Blogger shortcode

How to create Blogger shortcode
May be you used shortcode in Wordpress but Blogger don't have it.So now i want to show you how to create a shortcode in Blogger use Javascript.This is a diagram to create Blogger ShortcoeNow let's do it.Create a function with pID parameter.//![CDATA[ function shortcode( pID ) { var shortcode_content = "Your Content";//Content for shortcode }//]]>1 - Get post content.//![CDATA[ function shortcode( pID ) {var shortcode_content = "Your Content";//Content for shortcode var obj = document.getElementById( pID ); var post_content = obj.innerHTML;//Get...

SEO Keywords [My Share]

SEO Keywords [My Share]
There are some experienced seo want to share with you as well as offer to discuss with the desire can learn more from you.1 - Page Rank is not important, but is a measure of the trust's website.As I see high PR sites will seo faster, speed index other also the site khac.Mat faster page PR is not just a mere index is a measure of trust site If your site PR The higher the priority, Google will and frequently crawl your website.2 - effective link exchange article than global link exchange on site.As you know that every website now has a module used to display the link exchange (if available). It...

Redirect non-www to www with blogger [Godaddy DNS]

Redirect non-www to www with blogger [Godaddy DNS]
When you buy domain from godaddy services and create website on blogger but you can't Redirect non www to www.It's very simple if you follow me.The first you login to godadday account and go to Domain manager.Choice domain you want redirect and choice DNS manager or choice Edit Zone.Delete all host record and add to ip: 74.125.128.121Affter that login to blogger account, go to Setting menu -> Bassic -> Publishing click edit and choice Redirect your-domain.com to www.your-domain.com.Save change and wait 5 minutes for godaddy take to chan...

Page Navigation wordpress post

Page Navigation wordpress post
When you have a post too long!.You want to create a navigator for it.I's very simple, I will show you how to do it now.Into wordpress loop you can add bellow code. !--?php $args = array( 'before' => '' . __('Pages:'), 'after' => '', 'link_before' => '', 'link_after' => '', 'next_or_number' => 'number', 'nextpagelink' => __('Next page'), 'previouspagelink' => __('Previous page'), 'pagelink' => '%', 'echo' => 1);wp_link_pages( $args ); ?>--> Affter that you must active Next Page button in Wordpress TinyMce Editor.Add...