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
| <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
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( 'customize_register' , 'my_theme_options' ); | |
| function my_theme_options( $wp_customize ) { | |
| // Sections, settings and controls will be added 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
| $wp_customize->add_control( | |
| new WP_Customize_Latest_Post_Control( | |
| $wp_customize, | |
| 'featpost_control', | |
| array( | |
| 'label' => __( 'Select A Featured Post', 'mytheme' ), | |
| 'section' => 'header_section', | |
| 'settings' => 'featured_post', | |
| 'post_type' => 'page' | |
| ) |
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( 'ALTERNATE_WP_CRON', true ); |
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( 'wp_ajax_button_click', 'user_clicked' ); | |
| function user_clicked() { | |
| update_user_meta( get_current_user_id(), 'clicked_link', 'yes' ); | |
| wp_redirect( $_SERVER['HTTP_REFERER'] ); | |
| exit(); | |
| } |
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( 'wp_enqueue_scripts', 'enqueue_parent_styles' ); | |
| function enqueue_parent_styles() { | |
| wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' ); | |
| } |
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
| # -*- mode: ruby -*- | |
| # vi: set ft=ruby : | |
| VAGRANTFILE_API_VERSION = "2" | |
| Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
| config.vm.box = "precise64" | |
| config.vm.box_url = "http://files.vagrantup.com/precise64.box" | |
| config.vm.network :private_network, ip: "192.168.77.77" | |
| config.vm.provision :shell, :path => "install.sh" |
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
| #!/bin/bash | |
| # Setup Variables | |
| DBNAME=checker | |
| DBUSER=root | |
| DBPASS=root | |
| DBHOST=localhost | |
| DBPREFIX=9239jej9md_ | |
| URL=checker |
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
| #!/bin/bash | |
| # Setup Variables | |
| DBNAME=blog | |
| DBUSER=root | |
| DBPASS=root | |
| DBHOST=localhost | |
| DBPREFIX=9239jej9md_ | |
| URL=http://blog.local |
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 theme_slug_setup() { | |
| add_theme_support( 'title-tag' ); | |
| } | |
| add_action( 'after_setup_theme', 'theme_slug_setup' ); | |
| if ( ! function_exists( '_wp_render_title_tag' ) ) : | |
| function theme_slug_render_title() { | |
| echo '<title>' . wp_title( '|', false, 'right' ) . "</title>\n"; | |
| } | |
| add_action( 'wp_head', 'theme_slug_render_title' ); |