This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ----------------------------------------------------------------- | |
# .gitignore for WordPress | |
# Bare Minimum Git | |
# http://ironco.de/bare-minimum-git/ | |
# ver 20150227 | |
# | |
# This file is tailored for a WordPress project | |
# using the default directory structure | |
# | |
# This file specifies intentionally untracked files to ignore |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="https://www.linkedin.com" rel="me"> | |
<img src="images/linkedin.svg" class="social-icon"> | |
</a> | |
// CSS | |
.social-icon { | |
margin-left: 10px; | |
height: 20px; | |
opacity: 0.7; | |
transition: opacity 0.15s linear; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$args = [ | |
'post_type' => 'tq_team', | |
'posts_per_page' => -1, | |
'meta_key' => 'priority', | |
'orderby' => [ | |
'meta_value_num' => 'ASC', | |
'title' => 'ASC' | |
] | |
]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'do_meta_boxes','my_removeThemifyMetaboxes'); | |
function my_removeThemifyMetaboxes(){ | |
remove_meta_box( 'themify-meta-boxes', 'my-custom-post-type', 'normal' ); | |
} |