Skip to content

Instantly share code, notes, and snippets.

View erezLieberman's full-sized avatar

Erez Lieberman erezLieberman

View GitHub Profile
$( window ).load( function(){
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-11504677-1', 'auto');
ga('send', 'pageview');
ga(function(tracker) {
http_path = ""
css_dir = "wp-content/themes/theme_name/"
sass_dir = "wp-content/themes/theme_name/"
images_dir = "images"
line_comments = true
sourcemap = true
@erezLieberman
erezLieberman / get url of featured image in wp.php
Created November 1, 2015 16:03
get url of featured image in wp
'post__not_in' => array($post->ID)
@erezLieberman
erezLieberman / livechatinc.com widget - rtl.css
Last active January 7, 2016 18:51
livechatinc.com rtl support to chat widget
caption,td,th{text-align:right;}
#wrapper{left:0;right:0;}
.outline{border-radius:10px 10px 0 0;}
#content .integration p{padding-right:0;padding-left:0;}
.ajax-loader{margin-right:5px;}
#title-container .title-button{float:left;}
#title-container #close-chat{margin-left:-12px;padding:6px 6px 5px 12px;}
#title-container #minimize{margin-left:5px;}
body.pop-out #notification{left:36px;right:5px;}
body.pop-out.state-chatting #notification{left:58px;}
@erezLieberman
erezLieberman / exmple.php
Created December 21, 2015 09:22
exmple.php
<base href="<?php echo site_url();?>/">
@erezLieberman
erezLieberman / acf repeater short syntax.php
Created November 3, 2015 09:18
acf repeater short syntax
<?php
if( have_rows('left_box_items') ): while ( have_rows('left_box_items') ) : the_row();?>
<?php the_sub_field('sub_field_name'); ?>
<?php endwhile;endif;?>
@erezLieberman
erezLieberman / child-theme.js
Last active December 1, 2015 13:54
child theme - starting point
(function($) {
$(document).ready(function(){
alert("wow it's work!!!");
// view the entire object of PHP variables
console.dir(ourPhpVariables);
// retrieve the site name from the object
var siteName = ourPhpVariables.siteName;
@erezLieberman
erezLieberman / add wp shortcode code apper in place.php
Last active November 9, 2015 12:28
add wp shortcode code apper in place
<?php
function shortcode_function_name() {
ob_start();
// Code
...youre php/html code
$content = ob_get_clean();
return $content;
}
@erezLieberman
erezLieberman / short wp loop.php
Last active November 4, 2015 10:35
short loop
<?php
$args = array (
'posts_per_page' => '-1',
);
$query = new WP_Query( $args );
if ( $query->have_posts() ) {
while ( $query->have_posts() ) {
$query->the_post();?>
<?php }