How can i filter the link given in "link to existing content".
As in the above image. I just want WSP BANNER TO BE SHOWN.
where WSP BANNER & CALENDAR are custom post_type
Any help will be appreciable.
現在、この目的で利用できる準備が整ったフィルターはありません。リクエストのチケットが投稿されました。すぐに取得できることを願っています。
それまでは、独自のフィルターを作成できます。
includes/class-wp-editor.php を開き、712 行目に次の変更を加えます。
$pt_names = apply_filters('custom_insert_link_suggestion_filter',array_keys( $pts ));
すべての公開投稿タイプを取得する代わりに、新しいフィルターを追加しました
次に、テーマに次のコードを追加して、内部リンクのカスタム投稿タイプをフィルタリングします
function my_filter_function($allowed_post_types)
{
if( condition chek)
{
return array('page','your custom post types');
}
} add_filter('custom_insert_link_suggestion_filter','my_filter_function',10,1);
あなたに役立つプラグインがあります: B09 既存のコンテンツへのリンク
「link_to_existing_content_post_types」というフィルターがあり、検索する投稿タイプを制御できます。
検索結果を完全に制御したい場合は、このプラグインと一緒に使用することもできます: Search Everything。