投稿の編集リンクのURLを変更して、自分のカスタム編集ページに移動できるようにします。私はフィルターまたは関数を探していましたが、見つけることができるのはedit_post_link()
関数とget_edit_post_link()
関数だけです。ドキュメントからわかることから、edit_post_link
URLではなくリンクテキストのみを変更します。そして、get_edit_post_link
私はあなたのためのURLを取得すると信じています。
3997 次
3 に答える
4
にフィルターを追加する必要がありますget_edit_post_link
。これはテストされていませんが、次のようなものです。
add_filter( 'get_edit_post_link', 'my_edit_post_link' );
function my_edit_post_link( $url, $post->ID, $context) {
$url = //However you want to generate your link
return $url;
}
于 2013-02-04T02:23:43.223 に答える
1
作業バージョン:
add_filter( 'get_edit_post_link', 'my_edit_post_link', 10, 3 );
function my_edit_post_link( $url, $post_id, $context) {
$url = "http://somethingerother.com/custom_post_editor.php?post=".$post_id; // Modify the URL as desired
return $url;
}
于 2020-08-06T17:14:53.873 に答える