私はクライアントサイトのためにWordPressを完全にカスタマイズするためにfunctions.phpファイルを使って最後の日を過ごしました。私がどれだけのことを達成できたか、そしてそれがどれほど簡単に私のクライアントにとって物事を成し遂げることができるかに私は驚いています。
管理者としてログインしていないユーザーの特定のメニュー項目を削除しました。私が望んでいるのは(そして私が読んだことからそれができることを知っているから)、いくつかのメニュー項目の名前を変更する方法を見つけることです(管理領域の左側のサイドバー)。たとえば、投稿を記事に変更します。
もし誰かがfunctions.phpファイルのためのコードを供給することができるか、または私がそれを大いに感謝する方向に私を向けることができるなら!
ラベルを変更するプロセスは次のとおりです(この例では投稿を「連絡先」に変更しました)。
function change_post_menu_label() {
global $menu;
global $submenu;
$menu[5][0] = 'Contacts';
$submenu['edit.php'][5][0] = 'Contacts';
$submenu['edit.php'][10][0] = 'Add Contacts';
$submenu['edit.php'][15][0] = 'Status'; // Change name for categories
$submenu['edit.php'][16][0] = 'Labels'; // Change name for tags
echo '';
}
function change_post_object_label() {
global $wp_post_types;
$labels = &$wp_post_types['post']->labels;
$labels->name = 'Contacts';
$labels->singular_name = 'Contact';
$labels->add_new = 'Add Contact';
$labels->add_new_item = 'Add Contact';
$labels->edit_item = 'Edit Contacts';
$labels->new_item = 'Contact';
$labels->view_item = 'View Contact';
$labels->search_items = 'Search Contacts';
$labels->not_found = 'No Contacts found';
$labels->not_found_in_trash = 'No Contacts found in Trash';
}
add_action( 'init', 'change_post_object_label' );
add_action( 'admin_menu', 'change_post_menu_label' );
メニューの順番を変更するには、これを続けてください。
// CUSTOMIZE ADMIN MENU ORDER
function custom_menu_order($menu_ord) {
if (!$menu_ord) return true;
return array(
'index.php', // this represents the dashboard link
'edit.php', //the posts tab
'upload.php', // the media manager
'edit.php?post_type=page', //the posts tab
);
}
add_filter('custom_menu_order', 'custom_menu_order');
add_filter('menu_order', 'custom_menu_order');
私はアイテムを削除するコードを持っていますが、それは世界的にであり、ユーザーアクセスレベルには基づいていません
デフォルトの投稿タイプの名前を変更するには(またはそれ以外の名前に変更するには)、単にフィルタpost_type_labels_{$post_type}
を使用します。デフォルトのpost
の場合はpost_type_labels_post
になります。以下のコードはラベルの完全なリストです(WP 4.7.1
)。あなたはすべてを変える必要はありません。
add_filter( 'post_type_labels_post', 'news_rename_labels' );
/**
* Rename default post type to news
*
* @param object $labels
* @hooked post_type_labels_post
* @return object $labels
*/
function news_rename_labels( $labels )
{
# Labels
$labels->name = 'News';
$labels->singular_name = 'News';
$labels->add_new = 'Add News';
$labels->add_new_item = 'Add News';
$labels->edit_item = 'Edit News';
$labels->new_item = 'New News';
$labels->view_item = 'View News';
$labels->view_items = 'View News';
$labels->search_items = 'Search News';
$labels->not_found = 'No news found.';
$labels->not_found_in_trash = 'No news found in Trash.';
$labels->parent_item_colon = 'Parent news'; // Not for "post"
$labels->archives = 'News Archives';
$labels->attributes = 'News Attributes';
$labels->insert_into_item = 'Insert into news';
$labels->uploaded_to_this_item = 'Uploaded to this news';
$labels->featured_image = 'Featured Image';
$labels->set_featured_image = 'Set featured image';
$labels->remove_featured_image = 'Remove featured image';
$labels->use_featured_image = 'Use as featured image';
$labels->filter_items_list = 'Filter news list';
$labels->items_list_navigation = 'News list navigation';
$labels->items_list = 'News list';
# Menu
$labels->menu_name = 'News';
$labels->all_items = 'All News';
$labels->name_admin_bar = 'News';
return $labels;
}
国際化サポートが必要な場合は、単に__( $text, $textdomain )
を使用してください。
$labels->name = __( 'News', 'textdomain' );
ファイルwp-includes/post.php
からfunction:get_post_type_labels()
にフィルタが見つかりました。
/**
* Filter the labels of a specific post type.
*
* The dynamic portion of the hook name, `$post_type`, refers to
* the post type slug.
*
* @since 3.5.0
*
* @see get_post_type_labels() for the full list of labels.
*
* @param object $labels Object with labels for the post type as member variables.
*/
$labels = apply_filters( "post_type_labels_{$post_type}", $labels );
私は同意します。functions.php
ファイルには多くの柔軟性があります。 functions.php
フィルターと このプラグイン の組み合わせで説明したのと同じ機能がいくつか必要でした。
私が言うことができるものから..このプラグインはあなたの問題の両方を達成するでしょう、そしてそれはマルチサイトインストール状況でもうまく動作します。それが役立つことを願っています。
上記のノークロスの例はまさにその通りですが、国際化の可能性が必要でした。私が評判を得たならば、これはNorcrossの答えの下のコメントであろう、しかし私がしないので、私はただここに修正されたコードを入れるつもりである。 'i18n_context'は翻訳コンテキストの任意の名前空間です。これは例えばあなたのプラグインやテーマの名前です。
function change_post_menu_label() {
global $menu;
global $submenu;
$menu[5][0] = __('Contacts', 'i18n_context');
$submenu['edit.php'][5][0] = __('Contacts', 'i18n_context');
$submenu['edit.php'][10][0] = __('Add Contacts', 'i18n_context');
$submenu['edit.php'][15][0] = __('Status', 'i18n_context'); // Change name for categories
$submenu['edit.php'][16][0] = __('Labels', 'i18n_context'); // Change name for tags
echo '';
}
function change_post_object_label() {
global $wp_post_types;
$labels = &$wp_post_types['post']->labels;
$labels->name = __('Contacts', 'i18n_context');
$labels->singular_name = __('Contact', 'i18n_context');
$labels->add_new = __('Add Contact', 'i18n_context');
$labels->add_new_item = __('Add Contact', 'i18n_context');
$labels->edit_item = __('Edit Contacts', 'i18n_context');
$labels->new_item = __('Contact', 'i18n_context');
$labels->view_item = __('View Contact', 'i18n_context');
$labels->search_items = __('Search Contacts', 'i18n_context');
$labels->not_found = __('No Contacts found', 'i18n_context');
$labels->not_found_in_trash = __('No Contacts found in Trash', 'i18n_context');
}
add_action( 'init', 'change_post_object_label' );
add_action( 'admin_menu', 'change_post_menu_label' );