Skip to content

Instantly share code, notes, and snippets.

View samuelcotterall's full-sized avatar

Samuel Cotterall samuelcotterall

View GitHub Profile

Keybase proof

I hereby claim:

  • I am samuelcotterall on github.
  • I am samuelcotterall (https://keybase.io/samuelcotterall) on keybase.
  • I have a public key ASDCUvlRBQ0MZrwwUUIhN0dQqtl80iB8vqWjuwxmbZSQKQo

To claim this, I am signing this object:

@samuelcotterall
samuelcotterall / settings.json
Created July 3, 2018 10:22
VS Code Settings
{
"editor.fontSize": 13,
"editor.fontFamily": "Fira Code",
"editor.fontLigatures": false,
"editor.renderWhitespace": "all",
"editor.tabSize": 2,
"workbench.iconTheme": "vs-seti",
"editor.cursorStyle": "line-thin",
"trailing-spaces.trimOnSave": true,
"sync.gist": "",
@samuelcotterall
samuelcotterall / random-non-overlapping-position.js
Created September 16, 2017 20:20 — forked from magicznyleszek/random-non-overlapping-position.js
JavaScript -- get random non-overlapping position
// declarations
var positions = [];
// Returns a random integer between min (included) and max (excluded)
// Using Math.round() will give you a non-uniform distribution!
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min)) + min;
}
// generate random positions
@samuelcotterall
samuelcotterall / functions.php
Created January 23, 2017 14:57
Wordpress hide admin bar for logged in users
add_filter('show_admin_bar', '__return_false');
@samuelcotterall
samuelcotterall / Mark parent navigation active when on custom post type single page
Last active February 20, 2018 09:15 — forked from gerbenvandijk/Mark parent navigation active when on custom post type single page
Mark (highlight) custom post type parent as active item in Wordpress Navigation.When you visit a custom post type's single page, the parent menu item (the post type archive) isn't marked as active. This code solves it by comparing the slug of the current post type with the navigation items, and adds a class accordingly.
<?php
add_action('nav_menu_css_class', 'add_current_nav_class', 10, 2 );
function add_current_nav_class($classes, $item) {
// Getting the current post details
global $post;
// Getting the post type of the current post
function newsPost_block_func() {
global $post;
$args = array(
'post_type' => array( 'post' ),
);
$query = new WP_Query($args);
var_dump($query->have_posts());
}
add_shortcode( 'newsPost_block', 'newsPost_block_func');
function newsPost_block_func() {
global $post;
$args = array();
$query = new WP_Query($args);
var_dump($query->have_posts());
}
add_shortcode( 'newsPost_block', 'newsPost_block_func');
$("#myformid").find("input, select").on('change', function(){
$("#myElement").addClass("myclass");
});
function cl_acf_set_language() {
return acf_get_setting('default_language');
}
function get_global_option($name) {
echo acf_get_setting('current_language'); // it
add_filter('acf/settings/current_language', 'cl_acf_set_language');
echo acf_get_setting('current_language'); // en
$option = get_field($name);
remove_filter('acf/settings/current_language', 'cl_acf_set_language');
echo acf_get_setting('current_language'); // it
var userInfo = passport.deserializeUser(function(id){
return id;
});
User.findById(userInfo, function(err, user) {
});