Making WordPress.org


Ignore:
Timestamp:
09/03/2020 11:57:12 PM (4 years ago)
Author:
coreymckrill
Message:

WordPress.org Learn: Sync with GitHub

https://github.com/WordPress/learn/compare/fcab3279c24740fb625278be5fd3484157df8941...81fc947c7f4f4174ef30a2f6c9fc42d3608e5a49

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-learn/inc/blocks.php

    r10169 r10237  
    33namespace WPOrg_Learn\Blocks;
    44
     5use Error;
    56use function WPOrg_Learn\Post_Meta\get_workshop_duration;
    67
    78defined( 'WPINC' ) || die();
     9
     10/**
     11 * Actions and filters.
     12 */
     13add_action( 'init', __NAMESPACE__ . '\workshop_details_init' );
     14add_action( 'enqueue_block_editor_assets', __NAMESPACE__ . '\enqueue_block_style_assets' );
     15add_action( 'wp_enqueue_scripts', __NAMESPACE__ . '\enqueue_block_style_assets' );
    816
    917/**
Note: See TracChangeset for help on using the changeset viewer.