You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
344 B
PHP
18 lines
344 B
PHP
<?php
|
|
/**
|
|
* Link Suggestions
|
|
*
|
|
* @package RankMath
|
|
* @subpackage RankMath\Metaboxes
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
$suggestions = rank_math()->admin->get_link_suggestions( get_post() );
|
|
if ( empty( $suggestions ) ) {
|
|
echo $field->args( 'not_found' );
|
|
return;
|
|
}
|
|
|
|
echo rank_math()->admin->get_link_suggestions_html( $suggestions );
|