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
| <div style="width:30%;padding:0 3% 0 0;float:left;"> | |
| Your content for your column #1 | |
| Your content for your column #1 | |
| Your content for your column #1 | |
| </div> | |
| <div style="width:30%;padding:0 3% 0 0;float:left;"> | |
| Your content for your column #2 | |
| Your content for your column #2 | |
| Your content for your column #2 |
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
| jQuery(document).ready(function(){ | |
| /*-----------------------------------------------------------------------------------*/ | |
| /* Add rel="lightbox" to image links if the lightbox is enabled */ | |
| /*-----------------------------------------------------------------------------------*/ | |
| if ( jQuery( 'body' ).hasClass( 'has-lightbox' ) && ! jQuery( 'body' ).hasClass( 'portfolio-component' ) ) { | |
| jQuery( 'a[href*=".jpg"], a[href*=".jpeg"], a[href*=".gif"], a[href*=".png"]' ).each( function () { | |
| var imageTitle = ''; | |
| if ( jQuery( this ).next().hasClass( 'wp-caption-text' ) ) { | |
| imageTitle = jQuery( this ).next().text(); |
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
| define('WP_DEBUG', true); | |
| if ( WP_DEBUG ) { | |
| @error_reporting( E_ALL ); | |
| @ini_set( 'log_errors', true ); | |
| @ini_set( 'log_errors_max_len', '0' ); | |
| define( 'WP_DEBUG_LOG', true ); | |
| define('WP_DEBUG_DISPLAY', 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 | |
| function plugins( $search ) { | |
| $num = 10; | |
| $order = 'ASC'; | |
| $orderby = 'name'; | |
| $fields = 'URL,title'; | |
| $url = 'https://api.wordpress.org/plugins/info/1.1/?action=query_plugins&request[search]='.urlencode( $search ); |
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
| /** | |
| * CSS Basics Example | |
| */ | |
| #primary { | |
| width: 70%; | |
| margin: 50px auto; | |
| padding: 20px; | |
| background: #eee; | |
| border: solid #ddd; |
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 | |
| /* | |
| Plugin Name: Force HTTP sharing URL | |
| Description: Make og:url HTTP in Yoast and Jetpack meta data | |
| Version: 20181127 | |
| Author: kristarella | |
| License: GPL2 | |
| License URI: https://www.gnu.org/licenses/gpl-2.0.html | |
| */ |
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 get_header(); ?> | |
| <!-- BEGIN PAGE --> | |
| <div id="page"> | |
| <?php if (of_get_option('promax_latest' ) =='1' ) {get_template_part('/includes/ltposts');} ?> | |
| <div id="page-inner" class="clearfix"> | |
| <div id="content"> | |
| <div class="posthd"><?php promax_tiltechange(); ?></div> | |
| <div class="three-columns group"> | |
| <?php if(have_posts()) : ?> | |
| <?php while(have_posts()) : the_post(); ?> |
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 | |
| /* | |
| Plugin Name: Exif remove location | |
| Description: Hide the location from Exifography for certain dates | |
| Version: 20180403 | |
| Author: kristarella | |
| License: GPL2 | |
| License URI: https://www.gnu.org/licenses/gpl-2.0.html | |
| */ |
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 | |
| /* | |
| Plugin Name: Exif remove location | |
| Description: Hide the location from Exifography for certain dates | |
| Version: 20180403 | |
| Author: kristarella | |
| License: GPL2 | |
| License URI: https://www.gnu.org/licenses/gpl-2.0.html | |
| */ |
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
| function sequential_child_widgets_init() { | |
| register_sidebar( array( | |
| 'name' => esc_html__( 'Sidebar', 'sequential' ), | |
| 'id' => 'sidebar-1', | |
| 'description' => '', | |
| 'before_widget' => '<aside id="%1$s" class="widget %2$s">', | |
| 'after_widget' => '</aside>', | |
| 'before_title' => '<h3 class="widget-title">', | |
| 'after_title' => '</h1>', | |
| ) ); |