wordpress backlink

Download wordpress backlink

If you can't read please download the document

Upload: mannmann

Post on 24-Nov-2015

4 views

Category:

Documents


2 download

DESCRIPTION

wordpress backlink

TRANSCRIPT

Upload wp-post-view folder to the /wp-content/plugins/ directoryActivate the plugin through the 'Plugins' menu in WordPressPlace echo_post_views(get_the_ID()); anywhere in the file codes to display AFTER in single.php file.You can either install it automatically from the WordPress admin, or do it manually.Unzip the archive and put the page-navi-slider folder into your plugins folder (/wp-content/plugins/)Activate the plugin through the Plugins menu in WordPressKeep defaults settings or customize and preview through the Setting / Page navi slider menuPlace in your templates.Or activate the auto display feature in the settings (not recommanded).Download the WP Dropdown Hierarchial Category UI Plugin.In your WordPress Administration, go to Plugins > Add New > Upload, and select the plugin ZIP file.Activate the plugin.Replace your old-school pagination with this schortcode in your template file, i.e. index.php, archive.php, search.php, or any template requires pagination.

function add_copyright_text() {if (is_single()) { ?>

function addLink() {if (window.getSelection().containsNode(document.getElementsByClassName('entry-content')[0], true)) { var body_element = document.getElementsByTagName('body')[0]; var selection; selection = window.getSelection();var oldselection = selection var pagelink = "

Read more at WPBeginner: "; //Change this if you like var copy_text = selection + pagelink; var new_div = document.createElement('div');new_div.style.left='-99999px';new_div.style.position='absolute'; body_element.appendChild(new_div ); new_div.innerHTML = copy_text ; selection.selectAllChildren(new_div ); window.setTimeout(function() { body_element.removeChild(new_div ); },0);}}document.oncopy = addLink;