base ) { return; } // Loads the widget style. wp_enqueue_style( 'arpw-admin-style', trailingslashit( ARPW_ASSETS ) . 'css/arpw-admin.css', array(), null ); } /** * Register the widget. * * @since 0.0.1 */ function register_widget() { require_once( ARPW_CLASS . 'widget.php' ); register_widget( 'Advanced_Random_Posts_Widget' ); } /** * Register new image size. * * @since 0.0.1 */ function register_image_size() { add_image_size( 'arpw-thumbnail', 50, 50, true ); } /** * Enqueue front-end style. * * @since 0.0.1 */ function plugin_style() { wp_enqueue_style( 'arpw-style', trailingslashit( ARPW_ASSETS ) . 'css/arpw-frontend.css', array(), null ); } } new ARP_Widget;