Skip to content

Instantly share code, notes, and snippets.

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

Oscar Olotu Olaw2jr

🏠
Working from home
View GitHub Profile
@Olaw2jr
Olaw2jr / breadcrumbs.php
Created January 13, 2014 20:11
WP bootstrap bread crumbs
<?php
function olaw2jr_breadcrumbs() {
$showOnHome = 0; // 1 - show breadcrumbs on the homepage, 0 - don't show
$delimiter = '<span class="divider">/</span>'; // delimiter between crumbs
$home = 'Home'; // text for the 'Home' link
$showCurrent = 1; // 1 - show current post/page title in breadcrumbs, 0 - don't show
$before = '<li class="active">'; // tag before the current crumb
$after = '</li>'; // tag after the current crumb
INITIALISATION
==============
load wp-config.php
set up default constants
load wp-content/advanced-cache.php if it exists
load wp-content/db.php if it exists
connect to mysql, select db
load object cache (object-cache.php if it exists, or wp-include/cache.php if not)
load wp-content/sunrise.php if it exists (multisite only)
@Olaw2jr
Olaw2jr / search.php
Created January 12, 2018 07:42 — forked from galengidman/search.php
WordPress search form & results for custom post type
<?php
// store the post type from the URL string
$post_type = $_GET['post_type'];
// check to see if there was a post type in the
// URL string and if a results template for that
// post type actually exists
if ( isset( $post_type ) && locate_template( 'search-' . $post_type . '.php' ) ) {
@Olaw2jr
Olaw2jr / passwordvalidation
Created February 15, 2018 14:37 — forked from Michael-Brooks/passwordValidation.php
Laravel Password validation Regex (Contain at least one uppercase/lowercase letters and one number)
/*
* Place this with the rest of your rules.
* Doesn't need to be in an array as there are no pipes.
*/
$rules = array(
'password' => 'required|min:6|regex:/^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).+$/'
);
/*
* Use this one if you also require at least one symbol.
<?php
/**
||-> Font Awesome Icons Array
*/
$icons = array(
'fa fa-angellist' => 'fa fa-angellist',
'fa fa-area-chart' => 'fa fa-area-chart',
'fa fa-at' => 'fa fa-at',
'fa fa-bell-slash' => 'fa fa-bell-slash',
'fa fa-bell-slash-o' => 'fa fa-bell-slash-o',
<?php
/**
||-> Google Fonts Array
*/
$google_fonts_list = array(
'ABeeZee:regular,italic,latin' => 'ABeeZee',
'Abel:regular,latin' => 'Abel',
'Abril+Fatface:regular,latin-ext,latin' => 'Abril Fatface',
'Aclonica:regular,latin' => 'Aclonica',
'Acme:regular,latin' => 'Acme',
@Olaw2jr
Olaw2jr / documentViewer.ts
Created June 26, 2018 07:03 — forked from giridharprakash/documentViewer.ts
Load pdf stream and show it in ionic app.
import {File} from '@ionic-native/file';
import { DocumentViewer } from '@ionic-native/document-viewer';
export class DocumentViewer
{
constructor(private file : File, private documentViewer: DocumentViewer)
{
}
public openDocument(document: Document)
@Olaw2jr
Olaw2jr / fast-scroll.scss
Created June 30, 2018 16:23 — forked from anteburazer/fast-scroll.scss
Ionic fast scroll
fast-scroll {
position: fixed;
top: 102px;
right: 5px;
padding: 10px 5px;
background: #f8f8f8;
border-radius: 10px;
border: 1px solid #ddd;
span {
import Prism from 'prismjs'
import loadLanguages from 'prismjs/components/index.js'
import path from 'path'
loadLanguages()
const languages = [
{ test: /\.(html|vue|xml)$/, lang: 'markup' },
{ test: /\.js$/, lang: 'javascript' },
{ test: /\.sh$/, lang: 'bash' },
{
"payload_type":"single_user_test_results_group",
"payload_status":"live", // "live": Actual Results. "verify": Sample Results when setting up the Webhook from within your account.
"test":{
"test_id":103,
"test_name":"Sample Test Name"
},
"group":{
"group_id":104,
"group_name":"Sample Group Name"