Integrations
Slim SEO Link Manager works nicely with most plugins. It allows you to analyze content from these plugins and give you correct reports for links.
Plugins​
Page builder plugins​
For page builder plugins, Slim SEO Link Manager gets content built with them and use this content for analyze internal and external links.
- Beaver Builder
- Bricks Builder
- Divi
- Elementor
- Oxygen Builder
Custom fields plugins​
Slim SEO Link Manager can also analyze content from custom fields. To enable this feature, you need to use the slim_seo_link_manager_post_custom_fields
filter to add custom fields to the plugin.
add_filter( 'slim_seo_link_manager_post_custom_fields', function( $fields ) {
$fields[] = 'my-text-field';
return $fields;
}
After running this filter, the plugin will get the content of the custom field (in the example above, the meta key of the custom field is my-text-field
) and analyze that content to find links and add to the reports.
It's best to create a text custom field to enter your content. You can do it easily with plugins like ACF or Meta Box.