備忘錄中寫入 functions.php,通過郵件更改標題的字體。
它也反映在列表中以供確認。
//標題字型選擇
function add_font_selection_metabox() {
add_meta_box(
'studio_font_selection',.
「標題字型選擇」,.
'render_font_selection_metabox',.
'studio',.
'side',.
'default'.
);
}
add_action('add_meta_boxes', 'add_font_selection_metabox');.
// 字型選擇
function render_font_selection_metabox($post) {
$selected_font = get_post_meta($post->ID, 'selected_font', true);
$fonts = array("TanukiMagic", "Tamanegi", "OtsutomeFont", "Noto_Sans_JP");
wp_nonce_field('studio_font_selection_nonce', 'studio_font_selection_nonce');
foreach ($fonts as $font) {
echo '<label><input type="radio" name="selected_font" value="' . esc_attr($font) . '" ' . checked($selected_font, $font, false) . '> ' . esc_html($font) . '</label><br>';
}
}
function save_font_selection_metabox($post_id) {
if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
return $post_id; }
}
if (!isset($_POST['studio_font_selection_nonce']) || !wp_verify_nonce($_POST['studio_font_selection_nonce'], 'studio_font_selection_nonce')) {
return $post_id; }
}
如果 (isset($_POST['selected_font'])) {
update_post_meta($post_id, 'selected_font', sanitize_text_field($_POST['selected_font']))); } }
}
}
add_action('save_post', 'save_font_selection_metabox');.
// 標題字型呼叫
function admin_enqueue_custom_fonts() {
$screen = get_current_screen();
if ($screen->post_type === 'studio') {
wp_enqueue_style('font', get_template_directory_uri() . '/css/font.css', false); }
}
}
add_action('admin_enqueue_scripts', 'admin_enqueue_custom_fonts');.
function add_studio_post_classes($classes, $class, $post_id) {
if (get_post_type($post_id) === 'studio') {
$selected_font = get_post_meta($post_id, 'selected_font', true);
if ($selected_font) {
$classes[] = 'font-' . sanitize_html_class($selected_font);
}
}
return $classes; }
}
add_filter('post_class', 'add_studio_post_classes', 10, 3);.
// 清單中的字型 css
function custom_admin_styles() {
echo '
<style
.posttype-studio .font-TanukiMagic .row-title {
font-family: "TanukiMagic", sans-serif; }
}
.posttype-studio .font-Tamanegi .row-title {
font-family: "Tamanegi", sans-serif; }
}
.posttype-studio .font-OtsutomeFont .row-title {
font-family: "OtsutomeFont", sans-serif; }
}
.posttype-studio .font-Noto_Sans_JP .row-title {
font-family: "Noto Sans JP", sans-serif; } }.
}
</style> <br /> <br /> <br /> <br /> <strong>3D 模式
';
}
add_action('admin_head', 'custom_admin_styles');.