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/

Vypnutí XML-RPC

XML-RPC is a Remote Procedure Call (RPC) protocol which uses XML to encode its calls and HTTP as a transport mechanism. XML-RPC is used to do something remotely to your blog such as posting, viewing comments, etc.
By default, WordPress enables XML-RPC automatically!

**Disable XML-RPC Pingback**
„https://wordpress.org/plugins/disable-xml-rpc-pingback/“:https://wordpress.org/plugins/disable-xml-rpc-pingback/

This is more friendly than disabling totally XML-RPC, that it’s needed by some plugins and apps (I.e. Mobile apps or some Jetpack’s modules).

Vypnutí pingbacků ve functions.php (totéž jako výše uvedený plugin)

/—code php
function remove_xmlrpc_pingback_ping( $methods ) {
unset( $methods[‚pingback.ping‘] );
return $methods;
}
add_filter( ‚xmlrpc_methods‘, ‚remove_xmlrpc_pingback_ping‘ );
\—

**How to disable XML-RPC manually:**

1) turn off XML-RPC in functions.php

/—code php
add_filter(‚xmlrpc_enabled‘, ‚__return_false‘);
\—

2) hide xmlrpc.php in HTTP response headers in functions.php

/—code php
function disable_x_pingback($headers)
{
unset( $headers[‚X-Pingback‘] );
return $headers;
}
add_filter(‚wp_headers‘, ‚disable_x_pingback‘);
\—

3) deny request to xmlrpc.php in .htaccess

/—code php

RedirectMatch 403 /xmlrpc.php

\—

or

/—code php

Order Deny,Allow
Deny from all

\—

„Zdroj »“:http://www.deluxeblogtips.com/2013/08/disable-xml-rpc-wordpress.html

Microdata

**Microdata for SEO**
„https://wordpress.org/plugins/microdata-for-seo-by-optimum7com/“:https://wordpress.org/plugins/microdata-for-seo-by-optimum7com/

This plug-in adds a button on the TinyMCE Editor that helps you generate valid Microdata Code within your WordPress posts and pages.

**Local Spotlight**
„https://wordpress.org/plugins/local-spotlight/“:https://wordpress.org/plugins/local-spotlight/

Local Spotlight is a WordPress plugin that allows you to quickly and easily add Microdata to posts and pages in accordance to schema.org standards. Microdata may be used to communicate exact location, address, etc. to search engines via special code. Using location or local address Microdata may help search engine rankings.

**Add Meta Tags**
„https://wordpress.org/plugins/add-meta-tags/“:https://wordpress.org/plugins/add-meta-tags/

Add basic meta tags and also Opengraph, Schema.org Microdata, Twitter Cards and Dublin Core metadata to optimize your web site for better SEO.

Vkládání obsahu z .docx dokumentů

**Mammoth .docx converter**
„https://wordpress.org/plugins/mammoth-docx-converter/“:https://wordpress.org/plugins/mammoth-docx-converter/

Mammoth is designed to convert .docx documents, such as those created by Microsoft Word, and convert them to HTML. Mammoth aims to **produce simple and clean HTML** by using semantic information in the document, and ignoring other details. For instance, Mammoth converts any paragraph with the style Heading1 to h1 elements, rather than attempting to exactly copy the styling (font, text size, colour, etc.) of the heading. This allows you to paste from Word documents without the usual mess.

Portfolio fotek či obrázků s filtrováním

**Awesome Filterable Portfolio**
„https://wordpress.org/plugins/awesome-filterable-portfolio/“:https://wordpress.org/plugins/awesome-filterable-portfolio/

Awesome Filterable Portfolio allows designers, artists, photographers to create, manage and publish a very modern and outstanding filterable portfolio that can be filtered using smooth animations and cool image hover effects.

Výzva k akci (Call to Action)

**WordPress Calls to Action**
„http://wordpress.org/plugins/cta/“:http://wordpress.org/plugins/cta/

Create Calls to Action for your WordPress site. Monitor and improve conversion rates, run A/B split tests, customize your own CTA templates and more.

WordPress Calls to Action works as a standalone plugin or hand in hand with „WordPress Landing Pages“:https://wordpresso.ovx.cz/ab-testovani/ & „WordPress Leads“:https://wordpresso.ovx.cz/wordpress-leads/ to create a powerful & free lead generation system for your business.

WordPress Leads

**WordPress Leads**
„http://wordpress.org/plugins/leads/“:http://wordpress.org/plugins/leads/

Track visitor activity, capture and manage incoming leads, and send collected emails to your email service provider.

WordPress Leads works as a standalone plugin or hand in hand with „WordPress Landing Pages“:https://wordpresso.ovx.cz/ab-testovani/ & „WordPress Calls to Action“:https://wordpresso.ovx.cz/vyzva-k-akci-call-to-action/ to create a powerful & free lead generation system for your business.

A/B testování

**WordPress Landing Pages**
„http://wordpress.org/plugins/landing-pages/“:http://wordpress.org/plugins/landing-pages/

Create landing pages for your WordPress site. Monitor and improve conversion rates, run A/B split tests, customize your own templates and more.

WordPress Landing Pages works as a standalone plugin or hand in hand with „WordPress Calls to Action“:https://wordpresso.ovx.cz/vyzva-k-akci-call-to-action/ & „WordPress Leads“:https://wordpresso.ovx.cz/wordpress-leads/ to create a powerful & free lead generation system for your business.

*Varianty*

**Convert Experiments by Yoast**
„https://wordpress.org/plugins/convert-experiments/“:https://wordpress.org/plugins/convert-experiments/

Convert Experiments™ provides advanced A/B and MVT Testing functionality for your website or blog.
The plugin will automatically send the page type, page name, category name, category ID, and tags to Convert Experiments. A/B testing on any set of categories or pages is then easy with the advanced filtering and segmentation during test configuration.

Monitorování rychlosti pluginů

**P3 (Plugin Performance Profiler)**
„https://wordpress.org/plugins/p3-profiler/“:https://wordpress.org/plugins/p3-profiler/

This plugin creates a profile of your WordPress site’s plugins‘ performance by measuring their impact on your site’s load time. Often times, WordPress sites load slowly because of poorly configured plugins or because there are so many of them. By using the P3 plugin, you can narrow down anything causing slowness on your site.

„Optimizing WordPress Performance with P3 »“:http://www.sitepoint.com/optimizing-wordpress-performance-with-p3/

WYSIWYG widget

**Black Studio TinyMCE Widget**
„https://wordpress.org/plugins/black-studio-tinymce-widget/“:https://wordpress.org/plugins/black-studio-tinymce-widget/

This plugin adds a WYSIWYG text widget based on the standard TinyMCE WordPress visual editor. This is intended to overcome the limitations of the default WordPress text widget, so that you can visually add rich text contents to your sidebars, with no knowledge of HTML required.