Maskování odkazů

**Link Cloaking**
„http://w-shadow.com/blog/2007/07/28/link-cloaking-plugin-for-wordpress/“:http://w-shadow.com/blog/2007/07/28/link-cloaking-plugin-for-wordpress/

This is a plugin for WordPress that can automatically or selectively cloak outgoing links in your posts and/or pages.

– Choose what to cloak – all links, only the links you specify or no links at all.
– Choose where to cloak – posts, pages or both.
– Exception list – links pointing to domains in this list will not be cloaked. For example, this is useful if you have chosen to cloak all links but don’t want to cloak the links to your own domains.

`Cloak Me`

Once you install the plugin, it will automatically, without requiring any configuration, turn it into a cloaked link when it’s displayed to a visitor:

`Cloak Me`

As an alternative to the fully automatic cloaking, you can switch the plugin to “selective cloaking” and tag the links you want to cloak manually:

`Cloak Me`

*Alternativy*

**WP Wizard Cloak**
„https://wordpress.org/plugins/wp-wizard-cloak/“:https://wordpress.org/plugins/wp-wizard-cloak/

Cloaks, tracks, and shortens your links. Turn long URLs into your-domain.com/link.

Automatické prolinkování a související příspěvky

**SEO Auto Links & Related Posts**
„http://wordpress.org/plugins/seo-alrp/“:http://wordpress.org/plugins/seo-alrp/

*Auto Links*

Auto create internal link to posts related to the current post base on Meta Keywords and Post Tags. Authority sites like Wikipedia always have a lot of internal link, and this feature will automatically help you getting the same results.

*Related Posts with 8 layout & style*

Displaying related posts based on the Content of articles, Post Tags and Meta Keywords. This feature is useful to improve internal links and to keep visitors stay on your site.

*Slide Out Related Posts with 6 theme color*

It is a sliding box, with related/recent posts in it, that will automatically appeared at the lower right corner when user scroll down and reach the end of article. It will grab visitors attention right after they finish reading your article, and giving them more options about what to do next. The impact is a longer visitors time spent on your site.

*Cache All Results and Thumbnail*

Visitors and Google likes fast loading websites. That’s why we use a persistent cache to store all results from auto links, related posts, slide out and thumbnail to get a better loading time and save server resources. All requests will be served from the cache, except on the first request.

*Custom Auto Link to Affiliate Products*

Manually adding a couple of keywords and links for the auto link. You can use this feature to automatically create a link to a trusted site for better SEO results or to affiliate products to earn additional profit.

Chybějící odkazy ve WordPress 3.5

Pokud si nainstalujete nový WordPress 3.5*, tak budete marně hledat v administrátorské postranní liště položku Odkazy (anglicky Links). WordPress tuto změnu dopředu avizoval a já jsem na to také účastníky školení WordPressu upozorňoval. Chybí-li Vám tato funkcionalita – doporučuji plugin Link Manager. * Používáte-li odkazy na svém webu a WordPress na novou verzi pouze upgradujete, […]

Blokové vkládání odkazů

**Smart Links**
„http://wordpress.org/extend/plugins/wezo-smart-links/“:http://wordpress.org/extend/plugins/wezo-smart-links/

The plugin enables the bar of the post formatting options. Links will be saved in the bank and will be available in Smart Links List tab.

[* http://s.wordpress.org/extend/plugins/wezo-smart-links/screenshot-2.png?r=540191 *]

Trvalé odkazy v lokální instalaci XAMP

V lokální instalaci Apache obvykle defaultně nefunguje *mod_rewrite*, tj. obsah *.htaccess* je ignorován, a nastavíte-li si pak user-friendly odkazy např. pomocí /%postname%/, vrací se stránky/příspěvky jako nenalezené s kódem 404.

Napravit to lze změnou v souboru *httpd.conf*, který se nalézá v lokálním adresáři XAMPu *\apache\conf*.

Řádek

/—code php
#LoadModule rewrite_module modules/mod_rewrite.so
\—

stačí odkomentovat (vymazat znak *#*).

Dále je třeba zkonreolovat, zda v části

/—code php
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be „All“, „None“, or any combination of the keywords:
# Options FileInfo AuthConfig Limit
#
AllowOverride All
\—

není zakomentována direktiva *AllowOverride All* (a je v tomto znění).

Po uložení *httpd.conf* a restartu lokálního Apache již WordPress odkazy přepisuje.

Související příspěvky

**Related Posts Slider**
„http://wordpress.org/extend/plugins/related-posts-slider/“:http://wordpress.org/extend/plugins/related-posts-slider/

Related posts slider creates a very attractive slider of the related posts or/and pages for a WordPress post or page.
The slider is a lightweight jQuery implementation of the related post functionality. It has a ready shortcode and widget as well to insert the slider.

– Showcase related posts in slider format, either in news style or in horizontal carousel format
– Complete CSS customization from settings panel
– Compatible with „YARPP plugin“:http://wordpress.org/extend/plugins/yet-another-related-posts-plugin/ and „WordPress Related Posts plugin“:http://wordpress.org/extend/plugins/wordpress-23-related-posts-plugin/
– Widget option available for Related Posts Slider
– Shortcode option to insert Related Posts Slider in between the content of a post
– Translation ready

[* http://s.wordpress.org/extend/plugins/related-posts-slider/screenshot-1.png?r=465251 *]

[* http://s.wordpress.org/extend/plugins/related-posts-slider/screenshot-2.png?r=465251 *]

*Alternativy*

Manuální nastavení souvisejících příspěvků

**Manual Related Posts**
„https://wordpress.org/plugins/baw-manual-related-posts/“:https://wordpress.org/plugins/baw-manual-related-posts/

You can manually choose which posts have to be be linked to every posts. Just click „Add related posts“, search for a post, click, add. Posts are linked to each others, example if you add on „Post A“ the „Post B“, then the „Post B“ will be linked to „Post A“ automatically, even if you can not see it in the backend.

„7 Awesome Related Post (Thumbnail) Plugins for WordPress »“:http://www.bloggenie.ca/best-related-post-plugins-thumbnails-wordpress/

Články ze stejné a nadřazené kategorie

Určitě už jste někdy chtěli, aby byli pod každým článkem uveřejněny další odkazy na texty ze stejné kategorie. To není až tak těžké. Tady se dozvíte, jak je vypisovat i z nadřazené rubriky a to tak, aby se vám v seznamu nic neopakovalo dvakrát.

$categ = get_the_category($post->ID);
$not = array($post->ID);

$my_query3 = new WP_Query(array ('cat' => $categ[0]->term_id, 'showposts' => 3, 'orderby' => 'rand', 'post__not_in'=> $not));
while ($my_query3->have_posts()) {
 $my_query3->the_post();
 echo "<a href='";
 the_permalink();
 echo "'>" . get_the_title() . "</a>";
 $not[] = get_the_ID();
 }

$my_query2 = new WP_Query(array ('cat' => $categ[0]->parent, 'showposts' => 3, 'orderby' => 'rand', 'post__not_in'=> $not));
while ($my_query2->have_posts()) {
 $my_query2->the_post();
 echo "<a href='";
 the_permalink();
 echo "'>" . get_the_title() . "</a>";
 }

Celé to funguje tak, že id každého načteného článku se uloží do proměnné not a jejich zobrazování se následně zakáže v dalším vypisování. Pokud máte nějaké dotazy nebo si nevíte rady s přesným provedením, tak můžete zanechat komentář.

Prolinkování webů tagy

**Tag Search**
„http://wordpress.org/extend/plugins/tag-search/“:http://wordpress.org/extend/plugins/tag-search/

Tag search grabs your saved post tags and when a tag word or phrase is encountered in your post content, Tag Search automatically creates a link which is pointed to the search page to turn the tag into a search term. When the user clicks the linked tag word or phrase all posts found to contain the tag word or phrase will be returned in the results. This is different from similar plugins that link the tagged word or phrase to it’s tag page so only those posts sharing the tag are returned.

*Alternativa*

**WP-Hashtag**
„http://wordpress.org/extend/plugins/wp-hashtag/“:http://wordpress.org/extend/plugins/wp-hashtag/

Pokud při psaní nějakého příspěvku vložíte před nějaké slovo „křížek“, tj. např. **#slovo**, pak se toto slovo jednak automaticky po uložení stane štítkem daného příspěvku (pokud podobný štítek neexistoval, tak se vytvoří) a současně bude toto slovo prolinkováno.