DELUCKS SEO
WordPress SEO Plugin made in Germany Optimize your website for Google, Bing & Co in no time: Through the quick optimization mode of DELUCKS SEO you can improve your metadata, extend your content with structured data and relevant keywords not only while editing posts, pages etc., but also directly from the overviews of WordPress. Extensive functions of DELUCKS SEO Metadata optimization for better previews Sitemaps for easier indexing Insert statistics and import SISTRIX rankings Canonical URLs with SSL support Breadcrumbs for better navigation and mobile SEO Premium: Automatically invalidate outbound links Premium: Microdata Configurator for rich snippets Premium: Social sharing buttons, CCPA and GDPR compliant Premium: WDF*IDF text analysis Setup Wizard After installation, our setup wizard will guide you through the most important SEO settings: Authorize your project for Google Search Console and Bing Webmaster Tools, activate additional features through the premium version and/or the professional mode if desired. Import and export function Import your keyword set with metadata easily via CSV file. If you previously worked with other WordPress SEO plugins like Yoast, wpSEO or All in One SEO Pack, you can import their metadata with a few clicks. Export your settings to other projects. Suitable for all editors Use our SEO plugin with all content editors: Elementor, WP Bakery Page Builder and many more. Our tool works best with the official WordPress block editor, for which there are dedicated SEO blocks and which provides the best loading times. Multilingual optimization Add locally relevant keywords to your translations and define individual language settings: For example, the composition of automatic metadata and breadcrumbs can be set differently in English than in French, Spanish or German. We recommend WPML. WooCommerce & Taxonomies Set individual rules for automatic metadata optimization and indexing of your products, categories and keywords. And if you don’t want your tags or author profiles to be indexed in Google & Co., you can exclude them with one click. ★★★★★ Performant, cleanly developed, excellently designed and easy to use (David, FastWP) Perfect for PageSpeed optimization DELUCKS SEO is PHP8 ready. Activate only those modules you need and combine our WordPress SEO plugin with WP Rocket: Meta data: Optimize previews in search engines with keywords and create rules for composing meta titles. Get keyword suggestions via autosuggest for this purpose. Sitemaps: Create automatically updated blueprints to help search engines index your site: Classic, Image, Video and News sitemaps. Statistics: Integrate tracking codes of your web statistics, use automatic event tracking for Google Analytics or activate our SISTRIX API to display your rankings in WordPress. URLs: Use Canonical tags and enforce SSL encryption for your website, automatically clean your new URLs from irrelevant stopwords to get found faster. Breadcrumbs: Add navigation paths to your website via widget or shortcode to show users and search engines their position within your content and for mobile SEO. Links (Premium): Automatically devalue outbound links and have them open in a new browser tab to keep SEO power within your site and lose fewer users. Microdata (Premium): Use our Structured Data configurator to make videos, FAQs, recipes, events, jobs etc. visible in search results in the form of Rich Snippets. Ratings (Premium): Add our ratings feature to WordPress’ commenting function to stand out in Google search results with stars. Social sharing (Premium): Configure CCPA and GDPR compliant plus performance-optimized sharing buttons to make your content easier to share on social media. Customize the previews in social media. Text optimization (Premium): Get information on the number of headlines, text length and a checklist of terms to write your texts more relevant by comparing your competitors. Questions, premium version or support needed? Get all information about our WordPress SEO plugin.
Top keywords
- seo14×2.29%
- premium11×1.80%
- wordpress8×1.31%
- metadata6×0.98%
- optimization6×0.98%
- search6×0.98%
- google5×0.82%
- automatically4×0.65%
- content4×0.65%
- import4×0.65%
- keywords4×0.65%
- social4×0.65%
SEO Writing Assistant SEMrush Custom Fields
The SEMrush SEO Writing Assistant plugin read only from post title and post content elements for the real time check. This lightweight plugin allows you to use an arbitrary value for that check in addition to those values. So, if you are using some kind of a page builders, field managers and so on, you have only to define a constant in your wp_config.php file and eventually to write a little bit of JavaScript code in order to specify which fields. Note that the plugin don’t replace SEMrush SEO Writing Assistant but is intended to be used together. Usage Once the plugin is activated you can configure it by defining following constants in your wp-config.php: SWA_SEMRUSH_CUSTOM_FIELDS_PLUGIN_AUTOENABLE Automatically enable use of additional text value for SEMrush check. The default value is false. This is the only configuration you have to do in order to have the plugin feature working. For example: define( 'SWA_SEMRUSH_CUSTOM_FIELDS_PLUGIN_AUTOENABLE', true ); SWA_SEMRUSH_CUSTOM_FIELDS_PLUGIN_INTERVAL Allows to change the interval between automatic updates of the text used by SEMrush checks. The default value is 5 seconds.For example: define( 'SWA_SEMRUSH_CUSTOM_FIELDS_PLUGIN_INTERVAL', 10 ); You can alernatavely control the plugins programmatically, by using semrush_seo_writing_assistant_post_types (optional) filter and SeoWritingAssistantSEMrushCustomFields JavaScript object (see below). API WordPress Hooks **swa_semrush_custom_fields_settings ** Filters plugin settings values. apply_filters( 'swa_semrush_custom_fields_settings', array $settings ) semrush_seo_writing_assistant_post_types Filters post types where to enable plugin. Default to array( 'post', 'page', 'product' ). apply_filters( 'semrush_seo_writing_assistant_post_types', array $post_types ) The filter has the same name as the one used by SEMrush SEO Writing Assistant plugin (since version 1.0.4) used for the same purpose. JavaScript Event seo-writing-assistant-semrush This event allows you to update the text for SEMrush analysis. The following example will update text for SEMrush check every 5 seconds, using excerpt and my_custom_fields custom field values (working both with block and classic editors): jQuery( document ).ready( function() { var swa = new SeoWritingAssistantSEMrushCustomFields( { interval: 5 } ); jQuery( document ).on( 'seo-writing-assistant-semrush', function( event, data ) { data.html += jQuery( '#excerpt' ).val() + "\n" + jQuery( '.editor-post-excerpt__textarea textarea').val() + "\n" + jQuery( '#my_custom_fields' ).val(); } ) } ); Note that if you have previously defined constant SWA_SEMRUSH_CUSTOM_FIELDS_PLUGIN_AUTOENABLE to true, you don’t have to create new SeoWritingAssistantSEMrushCustomFields object. JavaScript API setHtml() The following example will update programmatically the text used by SEMrush check with an arbitrary value: jQuery( document ).ready( function() { var swa = new SeoWritingAssistantSEMrushCustomFields( { interval: 0 } ); swa.setHtml( 'foo baz bar' ); } ); Advanced Custom Fields The plugin checks if Advanced Custom Fields is active in your WordPress instance and adds a custom setting to each field (only for input within text, radio and checkbox type, textarea and select elements) allowing you to add his value to SEMrush check without having to write any additional JavaScript code. Autodiscovery The plugin also automatically add to text used by SEMrush checks, the values of all HTML elements with swa-scf class or data-swa-scf attribute. This will applied only for input (within text, radio and checkbox type), textarea, and select elements.