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
#pnr-email-subscription-info { | |
display: none !important; | |
} | |
#pnr-email-intro-info { | |
display: none !important; | |
} | |
.field-container:nth-of-type(4), .field-container:nth-of-type(5){ | |
display: none !important; | |
} | |
.btn btn--primary, button { |
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
{ | |
"version": 2, | |
"settings": { | |
"appearanceTools": false, | |
"background": { | |
"backgroundImage": false, | |
"backgroundSize": false | |
}, | |
"border": { | |
"color": false, |
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
<?php | |
// WP_Query arguments | |
$args = array( | |
'post_type' => array('post'), // use any for any kind of post type, custom post type slug for custom post type | |
'post_status' => array('publish'), // Also support: pending, draft, auto-draft, future, private, inherit, trash, any | |
'posts_per_page' => '5', // use -1 for all post | |
'order' => 'DESC', // Also support: ASC | |
'orderby' => 'date', // Also support: none, rand, id, title, slug, modified, parent, menu_order, comment_count | |
'tax_query' => array( | |
'relation' => 'OR', // Use AND for taking result on both condition true |