Skip to content

Instantly share code, notes, and snippets.

View dvdopi's full-sized avatar

David Odhiambo dvdopi

View GitHub Profile
@dvdopi
dvdopi / gist:241c33b0fab46f43dd8a525cb110aa2f
Last active April 17, 2020 08:42
wordpress- query by custom taxomimy
$member = new WP_Query(
array(
'post_type' => 'post',
'orderby' => 'menu_order',
'order' => 'DESC',
'post_status' => 'publish',
'posts_per_page' => -1,
'tax_query' => array(
array(
'taxonomy' => 'taxonomy',
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
@dvdopi
dvdopi / gist:41109114eae197ea668a3aca4408b358
Created April 17, 2020 08:39
Center Align Div - CSS for Containing div of whatever you want to center vertically and horrizontally
.center {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs title="navbar" height="100px" />
<Content type="html"><![CDATA[
<head>
<style type="text/css">
#nav a {