' . esc_html__( 'Welcome to Art Portfolio, a child theme of Minimalio!', 'art-portfolio' ) . '

' . esc_html__( 'Please, check out this tutorial for using this child theme.', 'art-portfolio' ) . '

  • ' . esc_html__( 'How to set the design', 'art-portfolio' ) . '
  • ' . esc_html__( 'How to import the demo content', 'art-portfolio' ) . '
  • ' . esc_html__( 'And how to use', 'art-portfolio' ) . '
' . esc_attr__( 'Art Portfolio Theme Screenshot', 'art-portfolio' ) . '
'; } } add_action( 'admin_notices', 'minimalio_admin_banner' ); function minimalio_theme_notice_dismissed() { $user_id = get_current_user_id(); if ( isset( $_GET['my-theme-dismissed'] ) ) { add_user_meta( $user_id, 'minimalio_theme_notice_dismissed', 'true', true ); } } add_action( 'admin_init', 'minimalio_theme_notice_dismissed' ); function minimalio_admin_theme_style() { wp_enqueue_style( 'minimalio-admin-theme', get_theme_file_uri( './assets/dist/css/minimalio-notice.css' ) ); } add_action( 'admin_enqueue_scripts', 'minimalio_admin_theme_style' ); add_action( 'login_enqueue_scripts', 'minimalio_admin_theme_style' );