This file contains 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 custom user profile information | |
* | |
*/ | |
add_action( 'show_user_profile', 'my_show_extra_profile_fields' ); | |
add_action( 'edit_user_profile', 'my_show_extra_profile_fields' ); | |
function my_show_extra_profile_fields( $user ) { ?> |
This file contains 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 $current_date = date('j M Y'); ?> | |
<?php $efeed = new WP_Query( array( | |
'post_type' => 'tribe_events', | |
'showposts' => 10, | |
'start_date' => $current_date, | |
'end_date' => $current_date | |
)); | |
?> |
This file contains 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 $terms = rwmb_meta( '', 'type=taxonomy&taxonomy=tribe_events_cat' ); ?> | |
<?php foreach ( $terms as $term ) { $ecat = $term->slug; $ename = $term->name; } ?> | |
<?php $efeed = new WP_Query( array( | |
'post_type' => 'tribe_events', | |
'tribe_events_cat' => $ecat, | |
'showposts' => 5, | |
)); | |
?> |
This file contains 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 $current_date = date("Y-m-d H:i:s"); ?> | |
<?php $efeed = new WP_Query( array( | |
'post_type' => 'tribe_events', | |
'showposts' => 10, | |
'eventDisplay' => 'custom', | |
'start_date' => $current_date, | |
'end_date' => $current_date | |
)); | |
?> |
This file contains 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
site_url(): http://dev.mccs.com | |
home_url(): http://dev.mccs.com | |
Table Prefix: wp_ | |
WordPress: WP3.6 | |
Web Server: Apache | |
PHP: 5.4.10 | |
MySQL: 5.5.29 | |
max_allowed_packet_size: 1MB | |
WP Memory Limit: 40M | |
WPMDB Bottleneck: 1MB |
This file contains 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 | |
/** | |
* Singular template for Artist CPT | |
* | |
* | |
* @package Oblates | |
* @subpackage Template | |
*/ | |
get_header(); // Loads the header.php template. ?> |
This file contains 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
3 messages are hidden by filters. Show all messages. | |
Uncaught TypeError: Cannot call method 'create' of undefined measureIt.js:120 | |
event.returnValue is deprecated. Please use the standard event.preventDefault() instead. load-scripts.php?c=1&load%5B%5D=jquery-core,jquery-migrate,utils&ver=3.7.1:4 | |
POST http://oblates.loc/wp-admin/admin-ajax.php 500 (Internal Server Error) load-scripts.php?c=1&load%5B%5D=jquery-core,jquery-migrate,utils&ver=3.7.1:5 | |
send load-scripts.php?c=1&load%5B%5D=jquery-core,jquery-migrate,utils&ver=3.7.1:5 | |
x.extend.ajax load-scripts.php?c=1&load%5B%5D=jquery-core,jquery-migrate,utils&ver=3.7.1:5 | |
migrate_table_recursive script.js?ver=1.2:843 | |
$.ajax.success script.js?ver=1.2:908 | |
c load-scripts.php?c=1&load%5B%5D=jquery-core,jquery-migrate,utils&ver=3.7.1:3 | |
p.fireWith load-scripts.php?c=1&load%5B%5D=jquery-core,jquery-migrate,utils&ver=3.7.1:3 |
This file contains 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
@mixin mq($mq) { | |
@if $mq == 690 { @media (max-width: 690px) { @content; } } | |
@if $mq == 320 { @media (max-width: 320px) { @content; } } | |
@if $mq == retina { | |
@media | |
only screen and (-webkit-min-device-pixel-ratio: 2), | |
only screen and ( min--moz-device-pixel-ratio: 2), | |
only screen and ( -o-min-device-pixel-ratio: 2/1), | |
only screen and ( min-device-pixel-ratio: 2), |
This file contains 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
#site-title a { | |
@include hide-text; | |
display: block; | |
background: url(img/icons/spigot-logo.png) center center no-repeat; | |
width: 250px; | |
height: 100px; | |
position: relative; | |
top:5px; | |
left: -13px; |
This file contains 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
.flood .service:nth-of-type(1) { | |
#redSwatch { | |
@include animation-name(red-swatch-go); | |
@extend .animation-settings; | |
@include transform-origin(32%, 78%); | |
} | |
&:hover #redSwatch { | |
@include animation-name(red-swatch-off); |
OlderNewer