Nástroj pro SEO

**Off Page SEO**
„https://wordpress.org/plugins/off-page-seo/“:https://wordpress.org/plugins/off-page-seo/

Monitor SERP progress, get backlinks, join the guest posting network, analyze competitors etc.

– Rank Reporter (checks rank in SERP every 3 days)
– Track gained backlinks and its influence
– Competitor Analysis (using the most popular tools in the world)
– Social Share counter (counts how many Likes and Follows you have on various social networks)
– Page and Alexa Rank Checker (checks every day for a change in PR or Alexa Rank)
– Backlink opportunities (daily update of backlink opportunities)
– Guest posting (join the guest posting network)
– Comment opportunities (search for where you can post your comments)

Tablepress – editovatelné tabulky s filtrováním a tříděním

**Tablepress**
„https://wordpress.org/plugins/tablepress/“:https://wordpress.org/plugins/tablepress/

Allows you to easily create and manage beautiful tables. You can embed the tables into posts, pages, or text widgets with a simple Shortcode. Table data can be edited in a speadsheet-like interface, so no coding is necessary. Tables can contain any type of data, even formulas that will be evaluated. An additional JavaScript library adds features like sorting, pagination, filtering, and more for site visitors. Tables can be imported and exported from/to Excel, CSV, HTML, and JSON files.

Nákupní košík s PayPalem

**WP Marketplace – Complete Shopping Cart / eCommerce Solution**
„https://wordpress.org/plugins/wpmarketplace/“:https://wordpress.org/plugins/wpmarketplace/

A free full-featured Shopping Cart / eCommerce Plugin with everything you need on an easy UI, to build eShop or marketplace.

– Easy administration
– PayPal Integrated
– Integrated Feature Management and Pricing Table
– Multiple shipping option (extendable)
– Multiple payment gateways (extendable)
– Sales Tax
– Stock Management
– Product & Price variation ( like colors, sizes … )
– Multilevel pricing
– Invoice generation
– Customizable email templates
– Stock control
– Global coupon option
– Product specific coupon option
– Featured products
– and many more…

„Awesome Free Themes & Add-ons »“:http://wpmarketplaceplugin.com/product-category/free/

Export rubrik, štítků a uživatelských taxonomií

**WP Export Categories & Taxonomies**
„https://wordpress.org/plugins/wp-export-categories-taxonomies/“:https://wordpress.org/plugins/wp-export-categories-taxonomies/

Simple and basic plugin that let you export Categories, Tags and Taxonomies into a WordPress xml so you can import them in other sites using the WordPress importer tool.

Výměna e-mailu za stažení souboru

**Email Before Download**
„https://wordpress.org/plugins/email-before-download/“:https://wordpress.org/plugins/email-before-download/

Email Before Download presents your users with a form where they submit information, like their name and email address, prior to receiving a download.

This plugin integrates with the popular Contact Form 7 and WordPress Download Monitor plugins, allowing you to create any form you like and manage/monitor your file downloads.

!!! Můžou zmizet náhledové obrázky, zde „workaround“:https://wordpress.org/support/topic/featured-image-disappears-1

/—code php
// Around line 182 of wp-content/plugins/download-monitor/includes/class-wp-dlm.php, after this:
$current_support = get_theme_support( ‚post-thumbnails‘ );
// Put this:
if(is_array($current_support[0])) $current_support = $current_support[0];
// Then the code should be like this:
$current_support = get_theme_support( ‚post-thumbnails‘ );
if(is_array($current_support[0])) $current_support = $current_support[0];
\—

„Remove *The link to the file(s) has been e-mailed to you* »“:https://wordpress.org/support/topic/remove-the-link-to-the-files-has-been-e-mailed-to-you

„Custom Sender for Email Before Download »“:https://wordpress.org/plugins/custom-sender-for-email-before-download/

Uživatelské taxonomie, přidávání uživatelských polí k taxonomiím

„Custom user taxonomies »“:http://justintadlock.com/archives/2011/10/20/custom-user-taxonomies-in-wordpress

*

To add a custom field to your custom taxonomy, add the following code to your theme’s functions.php:
/—code php
// A callback function to add a custom field to our „presenters“ taxonomy
function presenters_taxonomy_custom_fields($tag) {
// Check for existing taxonomy meta for the term you’re editing
$t_id = $tag->term_id; // Get the ID of the term you’re editing
$term_meta = get_option( „taxonomy_term_$t_id“ ); // Do the check
?>

term_id“ );
// Return the value for the „presenter_id“ custom field
$presenter_data = get_userdata( $presenter_custom_fields[presenter_id] ); // Get their data
\—

To see what data is stored inside the custom fields you created, add the print_r function to your template, then preview it:
/—code php
‚; print_r( $presenter_custom_fields ); echo ‚

‚;
?>
\—

To keep it dynamic, we are passing in the „presenter_id“ field of our $presenter_custom_fields variable. Now, to see what data you have to work with, use print_r again:
/—code php
‚; print_r( $presenter_data ); echo ‚

‚;
?>
\—
„Zdroj: How To Add Custom Fields To Custom Taxonomies »“:http://sabramedia.com/blog/how-to-add-custom-fields-to-custom-taxonomies

***

To add a form field to the Edit Category screen we’ll use the edit_category_form_fields action hook available in WordPress:
/—code php
term_id, $cat_featured ) ) {
$featured_id = $cat_featured[$tag->term_id] ;
}
?>

The post ID that will be the featured post when viewing this category.


\—
The above code will add a single text field (Featured Post ID) to the Edit Category screen.

Now we need to save the input to our option array. To capture the ID when a category is updated we’ll use the edited_category action hook like so:

/—code php

\—
As you can see we are saving the Category ID and Featured Post ID as a single associative array option value in WordPress named category_featured. As you add Featured Post ID values to each of your categories they will be added to this array and saved in WordPress.

„Save Taxonomy Meta Data as an Options Array in WordPress »“:http://strangework.com/2010/07/01/how-to-save-taxonomy-meta-data-as-an-options-array-in-wordpress/

***

„How to Add Custom Meta Fields to Custom Taxonomies in WordPress »“:http://www.wpbeginner.com/wp-tutorials/how-to-add-additional-custom-meta-fields-to-custom-taxonomies/

„Adding Custom Meta Fields to Taxonomies »“:https://pippinsplugins.com/adding-custom-meta-fields-to-taxonomies/

„How To Add Custom Fields To Custom Taxonomies»“:http://sabramedia.com/blog/how-to-add-custom-fields-to-custom-taxonomies

„WordPress: Adding custom fields to taxonomies »“:http://www.journal.deviantdev.com/wordpress-adding-custom-fields-to-taxonomies/

„WordPress Taxonomies Extra Fields the easy way »“:https://en.bainternet.info/wordpress-taxonomies-extra-fields-the-easy-way/

„Hooking WordPress Taxonomy Changes With The Plugins API »“:https://www.dougv.com/2014/06/hooking-wordpress-taxonomy-changes-with-the-plugins-api/

„Extending WordPress Taxonomies »“:http://www.sitepoint.com/extending-wordpress-taxonomies/

SEO pro WordPress

„The Beginner’s Guide to WordPress SEO by Yoast »“:http://code.tutsplus.com/tutorials/the-beginners-guide-to-wordpress-seo-by-yoast-configuration–wp-31022

„The Definitive Guide To Higher Rankings For WordPress Sites »“:https://yoast.com/articles/wordpress-seo/

„Guide to Advanced SEO »“:http://www.quicksprout.com/the-advanced-guide-to-seo-chapter-1/

„How To Stop Search Engines From Indexing Specific Posts And Pages In WordPress »“:http://www.elegantthemes.com/blog/tips-tricks/how-to-stop-search-engines-from-indexing-specific-posts-and-pages-in-wordpress

„Are You Setting Up WordPress For SEO Success? »“:http://moz.com/blog/setup-wordpress-for-seo-success