0
私は以下の関数を使ってwordpress adminバックエンドにメニューを追加しました。メインメニューURLをwordpressにslugの代わりにurlで追加するには?
add_menu_page(
__('Golf courses', 'golf_courses'),
'Golf courses',
'manage_options',
'golf_courses',
'golf_courses',
plugins_url('myplugin/images/icon.png'),
6
);
URLを追加することはできません。例:http://www.google.comこれはどのような解決策ですか?
簡単な方法は、プラグイン機能からhttp://google.comなどのリダイレクトを作成することです。 –