Chinatown Singapore Colonial Window
A Pen by Ang Yi Xin on CodePen.
/** | |
* Copyright (c) Nicolas Gallagher. | |
* | |
* This source code is licensed under the MIT license found in the | |
* LICENSE file in the root directory of this source tree. | |
* | |
* @flow strict-local | |
*/ | |
type Groups = { [key: number]: Array<string> }; |
<?php | |
/** | |
* Add the `gv-grid` class to the list container | |
*/ | |
function my_gv_list_container( $classes ) { | |
return $classes . ' gv-grid'; | |
} | |
add_filter( 'gravityview/render/container/class', 'my_gv_list_container', 10, 1 ); | |
/** |
/** | |
* Plugin Name: Multiple Roles per User | |
* Description: Allows anyone who can edit users to set multiple roles per user. In a default WordPress environment that wouldn't have much of an effect, since the user would have the privileges of the top-privileged role that you assign to him. But if you have custom roles with custom privileges, this might be helpful. | |
* Version: 1 | |
* Author: nikolov.tmw | |
* Author URI: http://paiyakdev.com/ | |
* License: GPL2 | |
*/ | |
/* | |
Copyright 2013 Nikola Nikolov (email: [email protected]) |
<?php | |
add_action( 'wp_enqueue_scripts', 'enqueue_my_styles' ); | |
function enqueue_my_styles() { | |
global $wp_styles; | |
// Load the main stylesheet | |
wp_enqueue_style( 'my-theme', get_stylesheet_uri() ); |
Chinatown Singapore Colonial Window
A Pen by Ang Yi Xin on CodePen.