Skip to content

Instantly share code, notes, and snippets.

View Jesurun's full-sized avatar

Joe David Jesurun

View GitHub Profile
@Jesurun
Jesurun / Nabytek Custom Styles.css
Last active March 3, 2020 12:43
Nabytek Custom CSS
/*Header*/
DIV#nav-header-row DIV.oxy-header-container
{
padding: 0px 30px;
display: flex;
justify-content: space-between;
}
@media (min-width: 993px)
@Jesurun
Jesurun / Subterms loop for custom Taxonomy.php
Created February 24, 2020 22:38
Subterms loop for custom Taxonomy
<?php
//get the current object
$current = get_queried_object();
// try var_dump($current); to see all available data!
// return the ID of the current term
$current_term_id = $current->term_id;
// return the nicename of the current term (Not using)