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> | |
<body> | |
<div class="container"> | |
{% assign rows = content | split:"@row" %} | |
{% for row in rows %} | |
<div class="row" id="row-{{ forloop.index }}"> | |
{% assign columns = row | split:"@column" %} |
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
diff --git a/lib/wplink-required/wplink-required.js b/lib/wplink-required/wplink-required.js | |
new file mode 100644 | |
index 0000000..af440b2 | |
--- /dev/null | |
+++ b/lib/wplink-required/wplink-required.js | |
@@ -0,0 +1,115 @@ | |
+( function ( $ ) { | |
+ $( document ).ready( function () { | |
+ // Global: wpLink. | |
+ |
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 ai1ec2_display_events_func( $atts ) { | |
global $ai1ec_registry; | |
$content = '<div id="content2"><img src="/wp-content/themes/scio/images/events-header.png" alt="" />'; | |
$time = $ai1ec_registry->get( 'date.system' ); | |
// Get localized time | |
$timestamp = $time->current_time(); | |
// Set $limit to the specified categories/tags | |
$limit = array( | |
// | |
// this is demo data - please use your own filters |
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 | |
add_action( 'wp_enqueue_scripts', 'enqueue_my_styles' ); | |
/** | |
* Example callback function that demonstrates how to properly enqueue conditional stylesheets in WordPress for IE. | |
* IE10 and up does not support conditional comments in standards mode. | |
* | |
* @uses wp_style_add_data() WordPress function to add the conditional data. | |
* @link https://developer.wordpress.org/reference/functions/wp_style_add_data/ |