在 Wordpress UI 的“个人资料”页面 (../wp-admin/profile.php) 上,您可以选择八种默认的管理员配色方案作为选项:
我找到了创建这些方案的 CSS 的位置 (../wp-admin/css/colors/) 并使用 CSS 制作了我自己的文件夹以匹配。
首先,我什至无法在个人资料页面上显示我的配色方案,因此我可以对其进行测试。在 ../wp-admin/profile.php 中是这样的:
define('IS_PROFILE_PAGE', true);
/** Load User Editing Page */
require_once( dirname( __FILE__ ) . '/user-edit.php' );
在 ../wp-admin/user-edit.php 中,这是吐出配色方案的部分:
<?php if ( count($_wp_admin_css_colors) > 1 && has_action('admin_color_scheme_picker') ) : ?>
<tr class="user-admin-color-wrap">
<th scope="row"><?php _e('Admin Color Scheme')?></th>
<td><?php
/**
* Fires in the 'Admin Color Scheme' section of the user editing screen.
*
* The section is only enabled if a callback is hooked to the action,
* and if there is more than one defined color scheme for the admin.
*
* @since 3.0.0
* @since 3.8.1 Added `$user_id` parameter.
*
* @param int $user_id The user ID.
*/
do_action( 'admin_color_scheme_picker', $user_id );
?></td>
</tr>
<?php
endif; // $_wp_admin_css_colors
所以我的问题是:
如何让它在个人资料页面上显示我的配色方案,以便我可以对其进行测试和编辑?
一旦我对它的外观感到满意,我如何将配色方案放在我的自定义主题的 functions.php 文件中,这样我就可以在每次安装主题时导入它,而不必担心 WordPress 会用更新擦除它?
如何将此配色方案设置为用户的默认配色方案?
让我知道是否需要添加更多详细信息,感谢您的帮助!
蝴蝶不菲
万千封印