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 | |
/* Don't include the opening PHP tag*/ | |
/** | |
* Description: Getting all the values associated with a specific custom post meta key, across all posts | |
* Author: Chinmoy Paul | |
* Author URL: http://pwdtechnology.com | |
* | |
* @param string $key Post Meta Key. | |
* | |
* @param string $type Post Type. Default is post. You can pass custom post type here. |
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 | |
/* | |
Template Name: Full Width Content with Blog Posts | |
*/ | |
//* Add outreach-pro-home body class | |
add_filter( 'body_class', 'custom_body_class' ); | |
function custom_body_class( $classes ) { |
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 | |
/*-----------------------------------------------------------------------------------*/ | |
/* Custom Post Type - Slider */ | |
/*-----------------------------------------------------------------------------------*/ | |
if ( ! function_exists( 'gd_add_cpt_slider' ) ) { | |
function gd_add_cpt_slider() { | |
// "Slider" Custom Post Type | |
$labels = array( |
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 | |
// Don't include the opening PHP tag | |
/* | |
* Filename: gdslider.php | |
* Author: Genesis Developer | |
* @link: http://genesisdeveloper.me/adding-fullwidth-flexslider-on-home-page-in-minimum-pro-theme/ | |
* @since: 1.0 | |
* @license: GPL 2.0+ | |
*/ |
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
.minimum .flexslider { | |
background: #fff; | |
border: none; | |
border-radius: 0; | |
-webkit-border-radius: 0; | |
-moz-border-radius: 0; | |
box-shadow: none; | |
-webkit-box-shadow: none; | |
-moz-box-shadow: none; | |
margin: 0 auto; |
OlderNewer