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 | |
| /** | |
| * The custom template for the Design category for Modern Portfolio Pro | |
| */ | |
| //* Force full width content layout | |
| add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' ); | |
| //* Remove the entry meta in the entry header | |
| remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_open', 5 ); |
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
| // Product meta box | |
| /** | |
| * Adds a box to the main column on the Post and Page edit screens. | |
| */ | |
| function tormuz_add_meta_box() { | |
| $screens = array( 'product' ); | |
| foreach ( $screens as $screen ) { |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Bootstrap, from Twitter</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="description" content=""> | |
| <meta name="author" content=""> | |
| <!-- Le styles --> |
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 | |
| /* | |
| Term Archive Pages: | |
| - http://example.com/recipes/dinner/ | |
| - http://example.com/recipes/breakfast,brunch/ | |
| Single Recipe Pages: | |
| - http://example.com/recipes/dinner/soup-title/ |
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 | |
| class Single_Page_Walker extends Walker_Nav_Menu{ | |
| function start_el(&$output, $item, $depth, $args) { | |
| global $wp_query; | |
| $indent = ( $depth ) ? str_repeat( "\t", $depth ) : ''; | |
| $class_names = $value = ''; | |
| $classes = empty( $item->classes ) ? array() : (array) $item->classes; | |
| $classes[] = 'menu-item-' . $item->ID; |