File "link-suggestions.php"
Full Path: /home/diablzlo/glucosebalnce.com/wp-content/plugins/seo-by-rank-math/includes/metaboxes/link-suggestions.php
File size: 376 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Link Suggestions
*
* @package RankMath
* @subpackage RankMath\Metaboxes
*/
defined( 'ABSPATH' ) || exit;
$suggestions = rank_math()->admin->get_link_suggestions( get_post() );
if ( empty( $suggestions ) ) {
echo wp_kses_post( $field->args( 'not_found' ) );
return;
}
echo wp_kses_post( rank_math()->admin->get_link_suggestions_html( $suggestions ) );