Skip to content

Instantly share code, notes, and snippets.

@oneguy9
oneguy9 / function.php
Created July 11, 2017 16:27
adding images through GF
<?php
function royeyal_enqueue_styles() {
if ( is_rtl() ) {
wp_enqueue_style('parent-theme-rtl', get_template_directory_uri() .'/rtl.css');
wp_enqueue_style('local-theme-rtl', get_stylesheet_directory_uri() .'/css/rtl.min.css');
}
}
add_action('wp_enqueue_scripts', 'royeyal_enqueue_styles', 100);
@oneguy9
oneguy9 / function.php
Created July 9, 2017 13:57
Gravity Form Upload images to gallery
<?php
function royeyal_enqueue_styles() {
if ( is_rtl() ) {
wp_enqueue_style('parent-theme-rtl', get_template_directory_uri() .'/rtl.css');
wp_enqueue_style('local-theme-rtl', get_stylesheet_directory_uri() .'/css/rtl.min.css');
}
}
add_action('wp_enqueue_scripts', 'royeyal_enqueue_styles', 100);