假设您使用的是gutenberg,则需要使用javascript来完成此操作。以下是我将采取的步骤。在子主题中,您需要添加一些代码。
添加新目录;js";。
在该目录中添加一个名为;警报。js“;
在该文件中添加此代码:(这是实际的警告注释)
( function( wp ) {
wp.data.dispatch(\'core/notices\').createNotice(
\'warning\', // Can be one of: success, info, warning, error.
\'Please remember to add a featured image and choose a category.\', // Text string to display.
{
isDismissible: true, // Whether the user can dismiss the notice.
// Any actions the user can perform.
}
);
} )( window.wp );
现在告诉WordPress,您希望通过将JS排队到子主题的函数中来使用该代码。php:
function alerts_enqueue() {
wp_enqueue_script(\'alerts-script\', get_stylesheet_directory_uri() . \'/js/alerts.js\');
}
add_action( \'enqueue_block_editor_assets\', \'alerts_enqueue\' );
如果使用的是经典编辑器或其他块编辑器,则无法使用。
如果你真的想让用户遵守;规则:)