Skip to content

Instantly share code, notes, and snippets.

View Niloys7's full-sized avatar
🏠
Working from home

Niloy Niloys7

🏠
Working from home
View GitHub Profile
{
"plugins": [
"query-monitor",
"regenerate-thumbnails",
{
"slug": "envato-theme-check",
"source": "https://github.com/envato/envato-theme-check/archive/master.zip"
}
<?php
/*
http://manual.unyson.io/en/latest/options/introduction.html#content
*/
$options = array(
'tab_1' => array(
'title' => esc_html__('Logo Options', 'academic'),
'type' => 'tab',
'options' => array(
'heading' => array(
// Display Taxomonies
$terms = get_terms( 'fw-portfolio-category' ); // Taxomony Name
foreach ( $terms as $term ) {
// The $term is an object, so we don't need to specify the $taxonomy.
$term_link = get_term_link( $term );
// If there was an error, continue to the next term.
if ( is_wp_error( $term_link ) ) {
@Niloys7
Niloys7 / TiggerOnScroll.js
Created November 15, 2015 03:33
Trigger action when a user scrolls past a certain part of the page
$(window).scroll(function() {
var y_scroll_pos = window.pageYOffset;
var scroll_pos_test = 500;
// set to whatever you want it to be
if(y_scroll_pos > scroll_pos_test) {
$("body").css("background-color","#000");
}
else
{
@Niloys7
Niloys7 / equalWidth.js
Created October 25, 2015 06:46
Get Equal Width for element base on parent element
var total = 0;
$('.ClassName').each(function() {
total+= $(this).width();
total+= parseInt($(this).css('margin-left'), 0);
total+= parseInt($(this).css('margin-right'), 0);
total+= 0;
});
var num_blocks = $('.ClassName').size();