##API URLS
- Account Resources
- Catalog Resources
- Downline Resources
| function cg_revert_jquery_version_admin() { | |
| wp_deregister_script( 'jquery' ); | |
| wp_register_script( 'jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js'); | |
| wp_enqueue_script( 'jquery' ); | |
| } | |
| add_action( 'admin_enqueue_scripts', 'cg_revert_jquery_version_admin' ); | 
| <?php | |
| /* | |
| Plugin Name: Get Remote Image to Custom Field | |
| */ | |
| add_filter('really_simple_csv_importer_post_saved', function($post) | |
| { | |
| if (is_object($post)) { | |
| // Get the meta data of which key is "image" | |
| $image = $post->image; | 
##API URLS
| // Enqueue scripts and styles | |
| add_action( 'wp_enqueue_scripts', 'custom_scripts_styles_mobile_responsive' ); | |
| function custom_scripts_styles_mobile_responsive() { | |
| wp_enqueue_script( 'beautiful-responsive-menu', get_stylesheet_directory_uri() . '/js/responsive-menu.js', array( 'jquery' ), '1.0.0' ); | |
| wp_enqueue_style( 'dashicons' ); | |
| } | 
| <?php | |
| add_filter( 'genesis_attr_content', 'yoast_schema_empty', 20 ); | |
| add_filter( 'genesis_attr_entry', 'yoast_schema_event', 20 ); | |
| add_filter( 'genesis_attr_entry-title', 'yoast_itemprop_name', 20 ); | |
| add_filter( 'genesis_attr_entry-content', 'yoast_itemprop_description', 20 ); | |
| add_filter( 'genesis_post_title_output', 'yoast_title_link_schema', 20 ); | |
| /** | |
| * We'll use the post info output to add more meta data about the event. | 
| .visible-android { | |
| display:none; | |
| } | |
| .visible-ios { | |
| display:none; | |
| } | |
| .on-device .visible-android, .on-device .visible-android { | |
| display:inherit; | |
| } | |
| .device-ios .visible-android { |