Yoast\WP\SEO\Repositories
SEO_Links_Repository::update_target_indexable_id()
Updates the ID of the target indexable of a link.
Метод класса: SEO_Links_Repository{}
Хуков нет.
Возвращает
true|false
. Whether or not the update was succeful.
Использование
$SEO_Links_Repository = new SEO_Links_Repository(); $SEO_Links_Repository->update_target_indexable_id( $link_id, $target_indexable_id );
- $link_id(int) (обязательный)
- The ID of the link to be updated.
- $target_indexable_id(int) (обязательный)
- The ID of the target indexable.
Код SEO_Links_Repository::update_target_indexable_id() SEO Links Repository::update target indexable id Yoast 23.4
public function update_target_indexable_id( $link_id, $target_indexable_id ) { return (bool) $this->query() ->set( 'target_indexable_id', $target_indexable_id ) ->where( 'id', $link_id ) ->update_many(); }