NEXT craftinamerica.org. Base setup for headless wordpress https://www.craftinamerica.org
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

php-console-log-styles.php 504B

12345678910111213141516171819202122232425
  1. <?php
  2. // If this file is called directly, abort.
  3. if ( !defined( 'WPINC' ) ) {
  4. die;
  5. }
  6. /**
  7. * @func php_console_log_admin_styles()
  8. *
  9. * Load stylesheet for PHP Console Log pages.
  10. *
  11. * @since 1.0.0
  12. */
  13. function php_console_log_admin_styles() {
  14. wp_enqueue_style(
  15. 'php-console-log-style',
  16. PHP_CONSOLE_LOG_PLUGIN_DIR_URL . 'admin/css/php-console-log-style.css',
  17. [],
  18. PHP_CONSOLE_LOG_VERSION
  19. );
  20. }
  21. add_action( 'admin_enqueue_scripts', 'php_console_log_admin_styles', 10 );