Merge pull request #7 from Rumperuu/fix/linting

Add code linting to ensure WordPress Coding Standards compliance
This commit is contained in:
Ben Goldsworthy 2021-01-09 11:18:22 +00:00 committed by GitHub
commit 2de885796b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
25 changed files with 1708 additions and 1422 deletions

12
404.php
View File

@ -1,11 +1,11 @@
<?php <?php
/** /**
* The template for displaying 404 (not found) errors. * The template for displaying 404 (not found) errors.
* *
* @package WordPress * @package WordPress
* @subpackage Omphaloskepsis * @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
?> ?>
<?php get_header(); ?> <?php get_header(); ?>

View File

@ -1,57 +1,62 @@
<?php <?php
/** /**
* The template for displaying portfolio archives. * The template for displaying portfolio archives.
* *
* @package WordPress * @package WordPress
* @subpackage Omphaloskepsis * @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
?> ?>
<?php get_header(); ?> <?php get_header(); ?>
<main id="list-page" class="col-10 col-m-12" role="main"> <main id="list-page" class="col-10 col-m-12" role="main">
<header> <header>
<h1><?php echo (get_post_type() == "post") ? single_cat_title() : ucfirst(get_post_type())."s"; ?>.</h1> <h1><?php echo ( get_post_type() == 'post' ) ? single_cat_title() : ucfirst( get_post_type() ) . 's'; ?>.</h1>
<?php <?php
echo get_the_posts_pagination( array( echo get_the_posts_pagination(
'screen_reader_text' => ' ', array(
'mid_size' => 20, 'screen_reader_text' => ' ',
'prev_text' => '', 'mid_size' => 20,
'next_text' => '', 'prev_text' => '',
)); 'next_text' => '',
?> )
);
?>
</header> </header>
<section id="grid" class="row"> <section id="grid" class="row">
<?php <?php
if ( have_posts() ) : if ( have_posts() ) :
// Start the loop. // Start the loop.
while ( have_posts() ) : the_post(); while ( have_posts() ) :
/* the_post();
* Include the Post-Format-specific template for the content. /*
* If you want to override this in a child theme, then include a file * Include the Post-Format-specific template for the content.
* called content-___.php (where ___ is the Post Format name) and that will be used instead. * If you want to override this in a child theme, then include a file
*/ * called content-___.php (where ___ is the Post Format name) and that will be used instead.
get_template_part( 'template-parts/content', get_post_format() ); */
// End the loop. get_template_part( 'template-parts/content', get_post_format() );
// End the loop.
endwhile; endwhile;
// If no content, include the "No posts found" template. // If no content, include the "No posts found" template.
else: else :
get_template_part( 'template-parts/content', 'none' ); get_template_part( 'template-parts/content', 'none' );
endif; endif;
?> ?>
</section><!-- .site-main --> </section><!-- .site-main -->
<footer> <footer>
<?php <?php
echo get_the_posts_pagination( array( echo get_the_posts_pagination(
'screen_reader_text' => ' ', array(
'mid_size' => 20, 'screen_reader_text' => ' ',
'prev_text' => '', 'mid_size' => 20,
'next_text' => '', 'prev_text' => '',
)); 'next_text' => '',
?> )
);
?>
</footer> </footer>
</main><!-- .content-area --> </main><!-- .content-area -->

View File

@ -1,23 +1,26 @@
<?php <?php
/* /*
* Template Name: Centred Page * Template Name: Centred Page
*/ */
/** /**
* *
* *
* Displays a full-screen page with content in the center. * Displays a full-screen page with content in the center.
* *
* @package WordPress * @package WordPress
* @subpackage Omphaloskepsis * @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
?> ?>
<?php get_header(); ?> <?php get_header(); ?>
<main id="centred-page" role="main"> <main id="centred-page" role="main">
<?php while (have_posts()): the_post(); ?> <?php
while ( have_posts() ) :
the_post();
?>
<h1><?php echo get_the_title(); ?></h1> <h1><?php echo get_the_title(); ?></h1>
<h2><?php the_content(); ?></h2> <h2><?php the_content(); ?></h2>
<?php endwhile; ?> <?php endwhile; ?>

View File

@ -1,53 +1,59 @@
<?php <?php
/** /**
* The template for displaying comments. * The template for displaying comments.
* *
* @package WordPress * @package WordPress
* @subpackage Omphaloskepsis * @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
/* /*
* If the current post is protected by a password and * If the current post is protected by a password and
* the visitor has not yet entered the password we will * the visitor has not yet entered the password we will
* return early without loading the comments. * return early without loading the comments.
*/ */
if (post_password_required()) return; if ( post_password_required() ) {
return;
}
?> ?>
<div id="comments" class="comments-area"> <div id="comments" class="comments-area">
<div class="row"> <div class="row">
<div class="col-7" id="comments-list"> <div class="col-7" id="comments-list">
<h3 id="comments-list-title">Replies</h3> <h3 id="comments-list-title">Replies</h3>
<?php if ( have_comments() ) : ?> <?php if ( have_comments() ) : ?>
<?php the_comments_navigation(); ?> <?php the_comments_navigation(); ?>
<ol class="comment-list"> <ol class="comment-list">
<?php <?php
wp_list_comments( array( wp_list_comments(
'style' => 'ol', array(
'short_ping' => true, 'style' => 'ol',
'avatar_size' => 42, 'short_ping' => true,
)); 'avatar_size' => 42,
?> )
</ol><!-- .comment-list --> );
?>
</ol><!-- .comment-list -->
<?php the_comments_navigation(); ?> <?php the_comments_navigation(); ?>
<?php else: ?> <?php else : ?>
<p id="no-comments">No comments yet.</p> <p id="no-comments">No comments yet.</p>
<?php endif; ?> <?php endif; ?>
<?php if (!comments_open() && get_comments_number() && post_type_supports(get_post_type(), 'comments')): ?> <?php if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?>
<p class="no-comments"><?php _e( 'Comments are closed.', 'twentysixteen' ); ?></p> <p class="no-comments"><?php _e( 'Comments are closed.', 'twentysixteen' ); ?></p>
<?php endif; ?> <?php endif; ?>
</div> </div>
<div class="col-5" id="comments-reply"> <div class="col-5" id="comments-reply">
<?php <?php
comment_form( array( comment_form(
'title_reply_before' => '<h3 id="comments-reply-title">', array(
'title_reply_after' => '</h3>', 'title_reply_before' => '<h3 id="comments-reply-title">',
)); 'title_reply_after' => '</h3>',
?> )
</div> );
?>
</div>
</div> </div>
</div><!-- .comments-area --> </div><!-- .comments-area -->

View File

@ -1,13 +1,13 @@
<?php <?php
/** /**
* The template for displaying the footer * The template for displaying the footer
* *
* @package WordPress * @package WordPress
* @subpackage Omphaloskepsis * @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
?> ?>
<script type="text/javascript"> <script type="text/javascript">
// Displays and hides the top header bar on page scroll. // Displays and hides the top header bar on page scroll.
jQuery(document).ready(function($) { jQuery(document).ready(function($) {
@ -26,20 +26,20 @@
} }
}); });
}); });
function toggleCommentary() { function toggleCommentary() {
var linkText = ["Click here to hide all commentary and leave only reportage.", "Click here to show commentary."]; var linkText = ["Click here to hide all commentary and leave only reportage.", "Click here to show commentary."];
var commentaries = document.getElementsByClassName("article__text--commentary"); var commentaries = document.getElementsByClassName("article__text--commentary");
var link = document.getElementById("toggleCommentary"); var link = document.getElementById("toggleCommentary");
for (var i = 0; i < commentaries.length; i++) { for (var i = 0; i < commentaries.length; i++) {
commentaries[i].style.display = (commentaries[i].style.display == 'none') ? 'inline' : 'none'; commentaries[i].style.display = (commentaries[i].style.display == 'none') ? 'inline' : 'none';
} }
link.innerHTML = (link.innerHTML == linkText[0]) ? linkText[1] : linkText[0]; link.innerHTML = (link.innerHTML == linkText[0]) ? linkText[1] : linkText[0];
} }
</script> </script>
<?php wp_footer(); ?> <?php wp_footer(); ?>
</body> </body>

View File

@ -55,7 +55,7 @@ if ( ! function_exists( 'omphaloskepsis_setup' ) ) :
* to change 'omphaloskepsis' to the name of your theme in all the template files * to change 'omphaloskepsis' to the name of your theme in all the template files
*/ */
load_theme_textdomain( 'omphaloskepsis', get_template_directory() . '/languages' ); load_theme_textdomain( 'omphaloskepsis', get_template_directory() . '/languages' );
// Add default posts and comments RSS feed links to head. // Add default posts and comments RSS feed links to head.
add_theme_support( 'automatic-feed-links' ); add_theme_support( 'automatic-feed-links' );
@ -72,11 +72,14 @@ if ( ! function_exists( 'omphaloskepsis_setup' ) ) :
* *
* @since Omphaloskepsis 1.2 * @since Omphaloskepsis 1.2
*/ */
add_theme_support( 'custom-logo', array( add_theme_support(
'height' => 2256, 'custom-logo',
'width' => 1622, array(
'flex-height' => true, 'height' => 2256,
) ); 'width' => 1622,
'flex-height' => true,
)
);
/* /*
* Enable support for Post Thumbnails on posts and pages. * Enable support for Post Thumbnails on posts and pages.
@ -87,62 +90,73 @@ if ( ! function_exists( 'omphaloskepsis_setup' ) ) :
set_post_thumbnail_size( 1200, 9999 ); set_post_thumbnail_size( 1200, 9999 );
// This theme uses wp_nav_menu() in two locations. // This theme uses wp_nav_menu() in two locations.
register_nav_menus( array( register_nav_menus(
'primary' => __( 'Primary Menu', 'omphaloskepsis' ), array(
'social' => __( 'Social Links Menu', 'omphaloskepsis' ), 'primary' => __( 'Primary Menu', 'omphaloskepsis' ),
) ); 'social' => __( 'Social Links Menu', 'omphaloskepsis' ),
)
function omphaloskepsis_infinite_scroll_init() { );
add_theme_support( 'infinite-scroll', array(
'container' => 'main',
'render' => 'omphaloskepsis_infinite_scroll_render',
'footer' => 'colophon',
) );
}
add_action( 'init', 'omphaloskepsis_infinite_scroll_init' ); function omphaloskepsis_infinite_scroll_init() {
/** add_theme_support(
* Custom render function for Infinite Scroll. 'infinite-scroll',
*/ array(
function omphaloskepsis_infinite_scroll_render() { 'container' => 'main',
while ( have_posts() ) { 'render' => 'omphaloskepsis_infinite_scroll_render',
the_post(); 'footer' => 'colophon',
if ( is_search() ) { )
get_template_part( 'template-parts/content', 'search' ); );
} else { }
get_template_part( 'template-parts/content', get_post_format() );
add_action( 'init', 'omphaloskepsis_infinite_scroll_init' );
/**
* Custom render function for Infinite Scroll.
*/
function omphaloskepsis_infinite_scroll_render() {
while ( have_posts() ) {
the_post();
if ( is_search() ) {
get_template_part( 'template-parts/content', 'search' );
} else {
get_template_part( 'template-parts/content', get_post_format() );
}
}
} }
}
}
/* /*
* Switch default core markup for search form, comment form, and comments * Switch default core markup for search form, comment form, and comments
* to output valid HTML5. * to output valid HTML5.
*/ */
add_theme_support( 'html5', array( add_theme_support(
'search-form', 'html5',
'comment-form', array(
'comment-list', 'search-form',
'gallery', 'comment-form',
'caption', 'comment-list',
) ); 'gallery',
'caption',
)
);
/* /*
* Enable support for Post Formats. * Enable support for Post Formats.
* *
* See: https://codex.wordpress.org/Post_Formats * See: https://codex.wordpress.org/Post_Formats
*/ */
add_theme_support( 'post-formats', array( add_theme_support(
'aside', 'post-formats',
'image', array(
'video', 'aside',
'quote', 'image',
'link', 'video',
'gallery', 'quote',
'status', 'link',
'audio', 'gallery',
'chat', 'status',
) ); 'audio',
'chat',
)
);
/* /*
* This theme styles the visual editor to resemble the theme style, * This theme styles the visual editor to resemble the theme style,
@ -178,35 +192,41 @@ add_action( 'after_setup_theme', 'omphaloskepsis_content_width', 0 );
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
function omphaloskepsis_widgets_init() { function omphaloskepsis_widgets_init() {
register_sidebar( array( register_sidebar(
'name' => __( 'Sidebar', 'omphaloskepsis' ), array(
'id' => 'sidebar-1', 'name' => __( 'Sidebar', 'omphaloskepsis' ),
'description' => __( 'Add widgets here to appear in your sidebar.', 'omphaloskepsis' ), 'id' => 'sidebar-1',
'before_widget' => '<section id="%1$s" class="widget %2$s">', 'description' => __( 'Add widgets here to appear in your sidebar.', 'omphaloskepsis' ),
'after_widget' => '</section>', 'before_widget' => '<section id="%1$s" class="widget %2$s">',
'before_title' => '<h2 class="widget-title">', 'after_widget' => '</section>',
'after_title' => '</h2>', 'before_title' => '<h2 class="widget-title">',
) ); 'after_title' => '</h2>',
)
);
register_sidebar( array( register_sidebar(
'name' => __( 'Content Bottom 1', 'omphaloskepsis' ), array(
'id' => 'sidebar-2', 'name' => __( 'Content Bottom 1', 'omphaloskepsis' ),
'description' => __( 'Appears at the bottom of the content on posts and pages.', 'omphaloskepsis' ), 'id' => 'sidebar-2',
'before_widget' => '<section id="%1$s" class="widget %2$s">', 'description' => __( 'Appears at the bottom of the content on posts and pages.', 'omphaloskepsis' ),
'after_widget' => '</section>', 'before_widget' => '<section id="%1$s" class="widget %2$s">',
'before_title' => '<h2 class="widget-title">', 'after_widget' => '</section>',
'after_title' => '</h2>', 'before_title' => '<h2 class="widget-title">',
) ); 'after_title' => '</h2>',
)
);
register_sidebar( array( register_sidebar(
'name' => __( 'Content Bottom 2', 'omphaloskepsis' ), array(
'id' => 'sidebar-3', 'name' => __( 'Content Bottom 2', 'omphaloskepsis' ),
'description' => __( 'Appears at the bottom of the content on posts and pages.', 'omphaloskepsis' ), 'id' => 'sidebar-3',
'before_widget' => '<section id="%1$s" class="widget %2$s">', 'description' => __( 'Appears at the bottom of the content on posts and pages.', 'omphaloskepsis' ),
'after_widget' => '</section>', 'before_widget' => '<section id="%1$s" class="widget %2$s">',
'before_title' => '<h2 class="widget-title">', 'after_widget' => '</section>',
'after_title' => '</h2>', 'before_title' => '<h2 class="widget-title">',
) ); 'after_title' => '</h2>',
)
);
} }
add_action( 'widgets_init', 'omphaloskepsis_widgets_init' ); add_action( 'widgets_init', 'omphaloskepsis_widgets_init' );
@ -241,10 +261,13 @@ if ( ! function_exists( 'omphaloskepsis_fonts_url' ) ) :
} }
if ( $fonts ) { if ( $fonts ) {
$fonts_url = add_query_arg( array( $fonts_url = add_query_arg(
'family' => urlencode( implode( '|', $fonts ) ), array(
'subset' => urlencode( $subsets ), 'family' => urlencode( implode( '|', $fonts ) ),
), 'https://fonts.googleapis.com/css' ); 'subset' => urlencode( $subsets ),
),
'https://fonts.googleapis.com/css'
);
} }
return $fonts_url; return $fonts_url;
@ -270,8 +293,8 @@ add_action( 'wp_head', 'omphaloskepsis_javascript_detection', 0 );
*/ */
function omphaloskepsis_scripts() { function omphaloskepsis_scripts() {
// Load the normalisation stylesheet. // Load the normalisation stylesheet.
wp_enqueue_style( 'omphaloskepsis-reset', get_template_directory_uri() . '/css/reset.css', array( ), null ); wp_enqueue_style( 'omphaloskepsis-reset', get_template_directory_uri() . '/css/reset.css', array(), null );
wp_style_add_data( 'omphaloskepsis-ie', 'conditional', 'lt IE 10' ); wp_style_add_data( 'omphaloskepsis-ie', 'conditional', 'lt IE 10' );
// Add custom fonts, used in the main stylesheet. // Add custom fonts, used in the main stylesheet.
wp_enqueue_style( 'omphaloskepsis-fonts', omphaloskepsis_fonts_url(), array(), null ); wp_enqueue_style( 'omphaloskepsis-fonts', omphaloskepsis_fonts_url(), array(), null );
@ -281,10 +304,10 @@ function omphaloskepsis_scripts() {
// Theme stylesheet. // Theme stylesheet.
wp_enqueue_style( 'omphaloskepsis-style', get_stylesheet_uri() ); wp_enqueue_style( 'omphaloskepsis-style', get_stylesheet_uri() );
wp_enqueue_style('font-awesome', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css'); wp_enqueue_style( 'font-awesome', 'https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css' );
wp_enqueue_style( 'montserrat', "https://fonts.googleapis.com/css?family=Montserrat" ); wp_enqueue_style( 'montserrat', 'https://fonts.googleapis.com/css?family=Montserrat' );
// Load the Internet Explorer specific stylesheet. // Load the Internet Explorer specific stylesheet.
wp_enqueue_style( 'omphaloskepsis-ie', get_template_directory_uri() . '/css/ie.css', array( 'omphaloskepsis-style' ), '20160412' ); wp_enqueue_style( 'omphaloskepsis-ie', get_template_directory_uri() . '/css/ie.css', array( 'omphaloskepsis-style' ), '20160412' );
@ -314,10 +337,14 @@ function omphaloskepsis_scripts() {
wp_enqueue_script( 'omphaloskepsis-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20160412', true ); wp_enqueue_script( 'omphaloskepsis-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20160412', true );
wp_localize_script( 'omphaloskepsis-script', 'screenReaderText', array( wp_localize_script(
'expand' => __( 'expand child menu', 'omphaloskepsis' ), 'omphaloskepsis-script',
'collapse' => __( 'collapse child menu', 'omphaloskepsis' ), 'screenReaderText',
) ); array(
'expand' => __( 'expand child menu', 'omphaloskepsis' ),
'collapse' => __( 'collapse child menu', 'omphaloskepsis' ),
)
);
} }
add_action( 'wp_enqueue_scripts', 'omphaloskepsis_scripts' ); add_action( 'wp_enqueue_scripts', 'omphaloskepsis_scripts' );
@ -367,9 +394,9 @@ function omphaloskepsis_hex2rgb( $color ) {
$color = trim( $color, '#' ); $color = trim( $color, '#' );
if ( strlen( $color ) === 3 ) { if ( strlen( $color ) === 3 ) {
$r = hexdec( substr( $color, 0, 1 ).substr( $color, 0, 1 ) ); $r = hexdec( substr( $color, 0, 1 ) . substr( $color, 0, 1 ) );
$g = hexdec( substr( $color, 1, 1 ).substr( $color, 1, 1 ) ); $g = hexdec( substr( $color, 1, 1 ) . substr( $color, 1, 1 ) );
$b = hexdec( substr( $color, 2, 1 ).substr( $color, 2, 1 ) ); $b = hexdec( substr( $color, 2, 1 ) . substr( $color, 2, 1 ) );
} else if ( strlen( $color ) === 6 ) { } else if ( strlen( $color ) === 6 ) {
$r = hexdec( substr( $color, 0, 2 ) ); $r = hexdec( substr( $color, 0, 2 ) );
$g = hexdec( substr( $color, 2, 2 ) ); $g = hexdec( substr( $color, 2, 2 ) );
@ -378,7 +405,11 @@ function omphaloskepsis_hex2rgb( $color ) {
return array(); return array();
} }
return array( 'red' => $r, 'green' => $g, 'blue' => $b ); return array(
'red' => $r,
'green' => $g,
'blue' => $b,
);
} }
/** /**
@ -416,7 +447,7 @@ function omphaloskepsis_content_image_sizes_attr( $sizes, $size ) {
return $sizes; return $sizes;
} }
add_filter( 'wp_calculate_image_sizes', 'omphaloskepsis_content_image_sizes_attr', 10 , 2 ); add_filter( 'wp_calculate_image_sizes', 'omphaloskepsis_content_image_sizes_attr', 10, 2 );
/** /**
* Add custom image sizes attribute to enhance responsive image functionality * Add custom image sizes attribute to enhance responsive image functionality
@ -436,7 +467,7 @@ function omphaloskepsis_post_thumbnail_sizes_attr( $attr, $attachment, $size ) {
} }
return $attr; return $attr;
} }
add_filter( 'wp_get_attachment_image_attributes', 'omphaloskepsis_post_thumbnail_sizes_attr', 10 , 3 ); add_filter( 'wp_get_attachment_image_attributes', 'omphaloskepsis_post_thumbnail_sizes_attr', 10, 3 );
/** /**
* Modifies tag cloud widget arguments to have all tags in the widget same font size. * Modifies tag cloud widget arguments to have all tags in the widget same font size.
@ -447,219 +478,243 @@ add_filter( 'wp_get_attachment_image_attributes', 'omphaloskepsis_post_thumbnail
* @return array A new modified arguments. * @return array A new modified arguments.
*/ */
function omphaloskepsis_widget_tag_cloud_args( $args ) { function omphaloskepsis_widget_tag_cloud_args( $args ) {
$args['largest'] = 1; $args['largest'] = 1;
$args['smallest'] = 1; $args['smallest'] = 1;
$args['unit'] = 'em'; $args['unit'] = 'em';
return $args; return $args;
} }
add_filter( 'widget_tag_cloud_args', 'omphaloskepsis_widget_tag_cloud_args' ); add_filter( 'widget_tag_cloud_args', 'omphaloskepsis_widget_tag_cloud_args' );
function clean_script_tag($input) { function clean_script_tag( $input ) {
$input = str_replace("type='text/javascript' ", '', $input); $input = str_replace( "type='text/javascript' ", '', $input );
return str_replace("'", '"', $input); return str_replace( "'", '"', $input );
} }
add_filter('script_loader_tag', 'clean_script_tag'); add_filter( 'script_loader_tag', 'clean_script_tag' );
function omphaloskepsis_the_content($content) { function omphaloskepsis_the_content( $content ) {
global $post; global $post;
if ($post->post_type == "program") { if ( $post->post_type == 'program' ) {
if ($meta = get_post_meta($post->ID, 'Link', true)) if ( $meta = get_post_meta( $post->ID, 'Link', true ) ) {
$links = $links . '<a class="hyperlink-button" target="_blank" href="'.$meta.'">Download</a>'; $links = $links . '<a class="hyperlink-button" target="_blank" href="' . $meta . '">Download</a>';
if ($meta = get_post_meta($post->ID, 'Documentation', true)) }
$links = $links . '<a class="hyperlink-button" target="_blank" href="'.$meta.'">Documentation</a>'; if ( $meta = get_post_meta( $post->ID, 'Documentation', true ) ) {
if ($meta = get_post_meta($post->ID, 'Repo', true)) $links = $links . '<a class="hyperlink-button" target="_blank" href="' . $meta . '">Documentation</a>';
$links = $links . '<a class="hyperlink-button" target="_blank" href="'.$meta.'">Repo</a>'; }
if ($meta = get_post_meta($post->ID, 'Licence', true)) if ( $meta = get_post_meta( $post->ID, 'Repo', true ) ) {
$links = $links . '<a class="hyperlink-button" target="_blank" href="'.$meta.'">Licence</a>'; $links = $links . '<a class="hyperlink-button" target="_blank" href="' . $meta . '">Repo</a>';
if ($meta = get_post_meta($post->ID, 'MD5', true)) }
$links = $links . '<p class="checksum">MD5 checksum: '.$meta.'</p>'; if ( $meta = get_post_meta( $post->ID, 'Licence', true ) ) {
return $content . $links; $links = $links . '<a class="hyperlink-button" target="_blank" href="' . $meta . '">Licence</a>';
} elseif ($post->post_type == "website") { }
if ($meta = get_post_meta($post->ID, 'Link', true)) if ( $meta = get_post_meta( $post->ID, 'MD5', true ) ) {
$links = $links . '<a class="hyperlink-button" target="_blank" href="'.$meta.'">Visit</a>'; $links = $links . '<p class="checksum">MD5 checksum: ' . $meta . '</p>';
if ($meta = get_post_meta($post->ID, 'Repo', true)) }
$links = $links . '<a class="hyperlink-button" target="_blank" href="'.$meta.'">Repo</a>'; return $content . $links;
if ($meta = get_post_meta($post->ID, 'Licence', true)) } elseif ( $post->post_type == 'website' ) {
$links = $links . '<a class="hyperlink-button" target="_blank" href="'.$meta.'">Licence</a>'; if ( $meta = get_post_meta( $post->ID, 'Link', true ) ) {
return $content . $links; $links = $links . '<a class="hyperlink-button" target="_blank" href="' . $meta . '">Visit</a>';
} elseif ($post->post_type == "writing") { }
if ($meta = get_post_meta($post->ID, 'Link', true)) if ( $meta = get_post_meta( $post->ID, 'Repo', true ) ) {
$links = $links . '<a class="hyperlink-button" target="_blank" href="'.$meta.'">Read</a>'; $links = $links . '<a class="hyperlink-button" target="_blank" href="' . $meta . '">Repo</a>';
if ($meta = get_post_meta($post->ID, 'Licence', true)) }
$links = $links . '<a class="hyperlink-button" target="_blank" href="'.$meta.'">Licence</a>'; if ( $meta = get_post_meta( $post->ID, 'Licence', true ) ) {
return $content . $links; $links = $links . '<a class="hyperlink-button" target="_blank" href="' . $meta . '">Licence</a>';
} elseif ($post->post_type == "other") { }
if ($meta = get_post_meta($post->ID, 'Link', true)) return $content . $links;
$links = $links . '<a class="hyperlink-button" target="_blank" href="'.$meta.'">Download</a>'; } elseif ( $post->post_type == 'writing' ) {
return $content . $links; if ( $meta = get_post_meta( $post->ID, 'Link', true ) ) {
} $links = $links . '<a class="hyperlink-button" target="_blank" href="' . $meta . '">Read</a>';
return $content; }
if ( $meta = get_post_meta( $post->ID, 'Licence', true ) ) {
$links = $links . '<a class="hyperlink-button" target="_blank" href="' . $meta . '">Licence</a>';
}
return $content . $links;
} elseif ( $post->post_type == 'other' ) {
if ( $meta = get_post_meta( $post->ID, 'Link', true ) ) {
$links = $links . '<a class="hyperlink-button" target="_blank" href="' . $meta . '">Download</a>';
}
return $content . $links;
}
return $content;
} }
add_filter('the_content', 'omphaloskepsis_the_content', 10); add_filter( 'the_content', 'omphaloskepsis_the_content', 10 );
add_action( 'wp_enqueue_scripts', 'load_dashicons_front_end' ); add_action( 'wp_enqueue_scripts', 'load_dashicons_front_end' );
function load_dashicons_front_end() { function load_dashicons_front_end() {
wp_enqueue_style( 'dashicons' ); wp_enqueue_style( 'dashicons' );
} }
function display_companies() { function display_companies() {
echo '<tr>'; echo '<tr>';
echo '<th colspan="2">Organisation</th>'; echo '<th colspan="2">Organisation</th>';
echo '<th>Children</th>'; echo '<th>Children</th>';
echo '<th>Associated Items</th>'; echo '<th>Associated Items</th>';
echo '</tr>'; echo '</tr>';
if ($_POST['toplevel'] == "true") {
// Gets all of the top-level company terms.
$terms = apply_filters("taxonomy-images-get-terms", "", array('having_images' => false, 'taxonomy' => 'company', 'term_args' => array('parent' => 0)));
$include = 1;
} else {
// Gets all of the company terms.
$terms = apply_filters("taxonomy-images-get-terms", "", array('having_images' => false, 'taxonomy' => 'company',));
$include = 0;
}
if(!empty($terms)) {
foreach($terms as $term) {
$term_children = get_term_children($term->term_id, "company");
// 0 = Jobs
// 1 = Blog Posts
// 2 = Websites
// 3 = Programs
// 4 = Writings
// 5 = Videos
// 6 = Others
// 7 = Qualifications
// 8 = Awards
$post_types = array('job', 'post', 'website', 'program', 'writing', 'video', 'other', 'qualification', 'award');
$dashicons = array('hammer', 'admin-post', 'schedule', 'desktop', 'format-aside', 'video-alt', 'archive', 'id', 'awards');
$term_items = array();
$term_item_counts = array();
if ( $_POST['toplevel'] == 'true' ) {
// Gets all of the top-level company terms.
foreach ($post_types as $post_type) { $terms = apply_filters(
$args = array( 'taxonomy-images-get-terms',
'posts_per_page' => -1, '',
'post_type' => $post_type, array(
'tax_query' => array( 'having_images' => false,
array( 'taxonomy' => 'company',
'taxonomy' => 'company', 'term_args' => array( 'parent' => 0 ),
'field' => 'slug', )
'terms' => $term->slug, );
'include_children' => $include, $include = 1;
), } else {
), // Gets all of the company terms.
'meta_query' => array(), $terms = apply_filters(
); 'taxonomy-images-get-terms',
'',
if ($_POST['currentjobs'] == "true" && $post_type == "job") { array(
$args['meta_query'] = array( 'having_images' => false,
array( 'taxonomy' => 'company',
'key' => 'end-date', )
'compare' => 'NOT EXISTS', );
'value' => '1', $include = 0;
), }
);
}
if ($_POST['showexpired'] != "true" && $post_type == "qualification") {
$args['meta_query'] = array(
array(
'key' => 'Expired',
'compare' => 'NOT EXISTS',
'value' => '1',
),
);
}
$posts = get_posts($args); if ( ! empty( $terms ) ) {
foreach ( $terms as $term ) {
$term_children = get_term_children( $term->term_id, 'company' );
array_push($term_items, $posts); // 0 = Jobs
array_push($term_item_counts, count($posts)); // 1 = Blog Posts
} // 2 = Websites
// 3 = Programs
if(($_POST['job'] == "true" && $term_item_counts[0] > 0) || // 4 = Writings
($_POST['post'] == "true" && $term_item_counts[1] > 0) || // 5 = Videos
($_POST['website'] == "true" && $term_item_counts[2] > 0) || // 6 = Others
($_POST['program'] == "true" && $term_item_counts[3] > 0) || // 7 = Qualifications
($_POST['writing'] == "true" && $term_item_counts[4] > 0) || // 8 = Awards
($_POST['video'] == "true" && $term_item_counts[5] > 0) || $post_types = array( 'job', 'post', 'website', 'program', 'writing', 'video', 'other', 'qualification', 'award' );
($_POST['other'] == "true" && $term_item_counts[6] > 0) || $dashicons = array( 'hammer', 'admin-post', 'schedule', 'desktop', 'format-aside', 'video-alt', 'archive', 'id', 'awards' );
($_POST['qualification'] == "true" && $term_item_counts[7] > 0) || $term_items = array();
($_POST['award'] == "true" && $term_item_counts[8] > 0)) { $term_item_counts = array();
$imgURL = wp_get_attachment_image_src($term->image_id, 'full')[0];
$bgImg = (!$imgURL) ? "" : " background-image: url(".strtok($imgURL, '?').");";
$colour = get_term_meta($term->term_id, 'color', true);
$colour = ($colour != "") ? $colour : "transparent";
echo '<tr class="organisation">';
echo '<td class="organisation-logo">';
echo '<a href="'.esc_url(get_term_link($term, $term->taxonomy)).'">';
echo '<img style="background-color: '.$colour.';" src="'.strtok($imgURL, '?').'" alt="'.$term->name.' logo">';
echo '</a>';
echo '</td>';
echo '<td class="organisation-name">';
echo '<a href="'.esc_url(get_term_link($term, $term->taxonomy)).'">';
echo '<p>'.$term->name.'</p>';
echo '</a>';
echo '</td>';
echo '<td class="organisation-items organisation-children">';
$num = (count($term_children) > 0) ? "" : "none";
echo '<div class="organisation-item '.$num.'">';
echo '<span class="dashicons dashicons-groups"></span><br>'.count($term_children);
echo '</div>';
echo '</td>';
echo '<td class="organisation-items">';
$i = 0;
foreach ($post_types as $post_type) {
$num = ($term_item_counts[$i] > 0) ? "" : "none";
echo '<div class="organisation-item '.$num.'">';
echo '<span class="dashicons dashicons-'.$dashicons[$i].'"></span><br>'.$term_item_counts[$i];
echo '</div>';
$i++;
};
echo '</td>';
echo '</tr>';
/*
echo '<a href="'.esc_url(get_term_link($term, $term->taxonomy)).'">';
echo '<li class="col-2 col-m-4" style="background-color: '.$colour.'; '.$bgImg.'">';
echo '<div class="company-info-container left">';
if (count($term_children) > 0) {
echo '<div class="company-info children">';
echo count($term_children).'<br><span class="dashicons dashicons-groups"></span>';
echo '</div>';
}
echo '</div>';
echo '<div class="company-info-container right">';
$i = 0;
foreach ($post_types as $post_type) {
if ($_POST[$post_type] == "true") {
echo '<div class="company-info jobs">';
echo $term_item_counts[$i].'<span class="dashicons dashicons-'.$dashicons[$i].'"></span>';
echo '</div>';
}
$i++;
}
echo '</div>';
if (!$imgURL) echo '<p class="company-name">'.$term->name.'</p>';
echo '</li>';
echo '</a>';
*/
}
}
} else {
echo '<p>No companies found</p>';
}
die(); foreach ( $post_types as $post_type ) {
$args = array(
'posts_per_page' => -1,
'post_type' => $post_type,
'tax_query' => array(
array(
'taxonomy' => 'company',
'field' => 'slug',
'terms' => $term->slug,
'include_children' => $include,
),
),
'meta_query' => array(),
);
if ( $_POST['currentjobs'] == 'true' && $post_type == 'job' ) {
$args['meta_query'] = array(
array(
'key' => 'end-date',
'compare' => 'NOT EXISTS',
'value' => '1',
),
);
}
if ( $_POST['showexpired'] != 'true' && $post_type == 'qualification' ) {
$args['meta_query'] = array(
array(
'key' => 'Expired',
'compare' => 'NOT EXISTS',
'value' => '1',
),
);
}
$posts = get_posts( $args );
array_push( $term_items, $posts );
array_push( $term_item_counts, count( $posts ) );
}
if ( ( $_POST['job'] == 'true' && $term_item_counts[0] > 0 ) ||
( $_POST['post'] == 'true' && $term_item_counts[1] > 0 ) ||
( $_POST['website'] == 'true' && $term_item_counts[2] > 0 ) ||
( $_POST['program'] == 'true' && $term_item_counts[3] > 0 ) ||
( $_POST['writing'] == 'true' && $term_item_counts[4] > 0 ) ||
( $_POST['video'] == 'true' && $term_item_counts[5] > 0 ) ||
( $_POST['other'] == 'true' && $term_item_counts[6] > 0 ) ||
( $_POST['qualification'] == 'true' && $term_item_counts[7] > 0 ) ||
( $_POST['award'] == 'true' && $term_item_counts[8] > 0 ) ) {
$imgURL = wp_get_attachment_image_src( $term->image_id, 'full' )[0];
$bgImg = ( ! $imgURL ) ? '' : ' background-image: url(' . strtok( $imgURL, '?' ) . ');';
$colour = get_term_meta( $term->term_id, 'color', true );
$colour = ( $colour != '' ) ? $colour : 'transparent';
echo '<tr class="organisation">';
echo '<td class="organisation-logo">';
echo '<a href="' . esc_url( get_term_link( $term, $term->taxonomy ) ) . '">';
echo '<img style="background-color: ' . $colour . ';" src="' . strtok( $imgURL, '?' ) . '" alt="' . $term->name . ' logo">';
echo '</a>';
echo '</td>';
echo '<td class="organisation-name">';
echo '<a href="' . esc_url( get_term_link( $term, $term->taxonomy ) ) . '">';
echo '<p>' . $term->name . '</p>';
echo '</a>';
echo '</td>';
echo '<td class="organisation-items organisation-children">';
$num = ( count( $term_children ) > 0 ) ? '' : 'none';
echo '<div class="organisation-item ' . $num . '">';
echo '<span class="dashicons dashicons-groups"></span><br>' . count( $term_children );
echo '</div>';
echo '</td>';
echo '<td class="organisation-items">';
$i = 0;
foreach ( $post_types as $post_type ) {
$num = ( $term_item_counts[ $i ] > 0 ) ? '' : 'none';
echo '<div class="organisation-item ' . $num . '">';
echo '<span class="dashicons dashicons-' . $dashicons[ $i ] . '"></span><br>' . $term_item_counts[ $i ];
echo '</div>';
$i++;
};
echo '</td>';
echo '</tr>';
/*
echo '<a href="'.esc_url(get_term_link($term, $term->taxonomy)).'">';
echo '<li class="col-2 col-m-4" style="background-color: '.$colour.'; '.$bgImg.'">';
echo '<div class="company-info-container left">';
if (count($term_children) > 0) {
echo '<div class="company-info children">';
echo count($term_children).'<br><span class="dashicons dashicons-groups"></span>';
echo '</div>';
}
echo '</div>';
echo '<div class="company-info-container right">';
$i = 0;
foreach ($post_types as $post_type) {
if ($_POST[$post_type] == "true") {
echo '<div class="company-info jobs">';
echo $term_item_counts[$i].'<span class="dashicons dashicons-'.$dashicons[$i].'"></span>';
echo '</div>';
}
$i++;
}
echo '</div>';
if (!$imgURL) echo '<p class="company-name">'.$term->name.'</p>';
echo '</li>';
echo '</a>';
*/
}
}
} else {
echo '<p>No companies found</p>';
}
die();
} }
add_action('wp_ajax_display_companies', 'display_companies'); add_action( 'wp_ajax_display_companies', 'display_companies' );
add_action('wp_ajax_nopriv_display_companies', 'display_companies'); add_action( 'wp_ajax_nopriv_display_companies', 'display_companies' );

View File

@ -1,40 +1,40 @@
<?php <?php
/** /**
* The template for displaying the header. * The template for displaying the header.
* *
* @package WordPress * @package WordPress
* @subpackage Omphaloskepsis * @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
?> ?>
<!DOCTYPE html> <!DOCTYPE html>
<html <?php language_attributes(); ?> class="no-js"> <html <?php language_attributes(); ?> class="no-js">
<head> <head>
<meta charset="<?php bloginfo('charset'); ?>"> <meta charset="<?php bloginfo( 'charset' ); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<?php $index = get_post_meta(get_the_ID(), 'Index', true); ?> <?php $index = get_post_meta( get_the_ID(), 'Index', true ); ?>
<?php if (!(is_single() && !is_page() && $index == "true")): ?> <?php if ( ! ( is_single() && ! is_page() && $index == 'true' ) ) : ?>
<meta name="robots" content="noindex"> <meta name="robots" content="noindex">
<?php endif; ?> <?php endif; ?>
<link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="profile" href="http://gmpg.org/xfn/11">
<?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?> <?php if ( is_singular() && pings_open( get_queried_object() ) ) : ?>
<link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>"> <link rel="pingback" href="<?php bloginfo( 'pingback_url' ); ?>">
<?php endif; ?> <?php endif; ?>
<?php wp_head(); ?> <?php wp_head(); ?>
<script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script> <script src="https://cdn.rawgit.com/google/code-prettify/master/loader/run_prettify.js"></script>
</head> </head>
<body <?php body_class(); ?> id="site-wrapper"> <body <?php body_class(); ?> id="site-wrapper">
<?php if (!is_page_template('centred-page.php')): ?> <?php if ( ! is_page_template( 'centred-page.php' ) ) : ?>
<header id="site-header"> <header id="site-header">
<nav id="site-header-nav"> <nav id="site-header-nav">
<div class="site-header-nav-item"><a href="/"><h1>Ben Goldsworthy</a></div> <div class="site-header-nav-item"><a href="/"><h1>Ben Goldsworthy</a></div>
<div class="site-header-nav-item"><h2>Views my own. Do try this at home.</h2></div> <div class="site-header-nav-item"><h2>Views my own. Do try this at home.</h2></div>
<div class="site-header-nav-item"><p>~ <a href="mailto:me+bg@bengoldsworthy.net"><i class="fa fa-envelope"></i></a> ~ <a href="bitcoin:1HApEg2robrRCx4rTKKeFj25unoaX65QUc"><i class="fa fa-btc"></i></a> ~ <a href="https://github.com/Rumperuu"><i class="fa fa-github"></i></a> ~ <a href="/0x30D22F41.asc"><i class="fa fa-key"></i></a> ~ <a href="/feed"><i class="fa fa-rss"></i></a> ~</p></div> <div class="site-header-nav-item"><p>~ <a href="mailto:me+bg@bengoldsworthy.net"><i class="fa fa-envelope"></i></a> ~ <a href="bitcoin:1HApEg2robrRCx4rTKKeFj25unoaX65QUc"><i class="fa fa-btc"></i></a> ~ <a href="https://github.com/Rumperuu"><i class="fa fa-github"></i></a> ~ <a href="/0x30D22F41.asc"><i class="fa fa-key"></i></a> ~ <a href="/feed"><i class="fa fa-rss"></i></a> ~</p></div>
<div class="site-header-nav-item"><a href="/blog">Blog</a></div> <div class="site-header-nav-item"><a href="/blog">Blog</a></div>
<div class="site-header-nav-item"><a href="/portfolios">Portfolios</a></div> <div class="site-header-nav-item"><a href="/portfolios">Portfolios</a></div>
<div class="site-header-nav-item"><a href="/social-cataloguing">Social Cataloguing</a></div> <div class="site-header-nav-item"><a href="/social-cataloguing">Social Cataloguing</a></div>
</nav> </nav>
</header> </header>
<?php endif; ?> <?php endif; ?>

View File

@ -1,61 +1,66 @@
<?php <?php
/** /**
* The blogroll template file. * The blogroll template file.
* *
* @package WordPress * @package WordPress
* @subpackage Omphaloskepsis * @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
?> ?>
<?php get_header(); ?> <?php get_header(); ?>
<main id="list-page" class="col-10 col-m-12" role="main"> <main id="list-page" class="col-10 col-m-12" role="main">
<header> <header>
<h1>Blog.</h1> <h1>Blog.</h1>
<h2><strong>All</strong> / <a href="/category/thoughts">Thoughts</a> / <a href="/category/reports">Reports</a> / <a href="/category/reviews">Reviews</a> / <a href="/category/projects">Projects</a></h2> <h2><strong>All</strong> / <a href="/category/thoughts">Thoughts</a> / <a href="/category/reports">Reports</a> / <a href="/category/reviews">Reviews</a> / <a href="/category/projects">Projects</a></h2>
<?php <?php
echo get_the_posts_pagination( array( echo get_the_posts_pagination(
'screen_reader_text' => ' ', array(
'mid_size' => 20, 'screen_reader_text' => ' ',
'prev_text' => '', 'mid_size' => 20,
'next_text' => '', 'prev_text' => '',
)); 'next_text' => '',
?> )
);
?>
</header> </header>
<section id="grid" class="row"> <section id="grid" class="row">
<?php <?php
if ( have_posts() ) : if ( have_posts() ) :
// Start the loop. // Start the loop.
while ( have_posts() ) : the_post(); while ( have_posts() ) :
/* the_post();
* Include the Post-Format-specific template for the content. /*
* If you want to override this in a child theme, then include a file * Include the Post-Format-specific template for the content.
* called content-___.php (where ___ is the Post Format name) and that will be used instead. * If you want to override this in a child theme, then include a file
*/ * called content-___.php (where ___ is the Post Format name) and that will be used instead.
get_template_part( 'template-parts/content', get_post_format() ); */
// End the loop. get_template_part( 'template-parts/content', get_post_format() );
// End the loop.
endwhile; endwhile;
// If no content, include the "No posts found" template. // If no content, include the "No posts found" template.
else: else :
get_template_part( 'template-parts/content', 'none' ); get_template_part( 'template-parts/content', 'none' );
endif; endif;
?> ?>
</section><!-- .site-main --> </section><!-- .site-main -->
<footer> <footer>
<?php <?php
echo get_the_posts_pagination( array( echo get_the_posts_pagination(
'screen_reader_text' => ' ', array(
'mid_size' => 20, 'screen_reader_text' => ' ',
'prev_text' => '', 'mid_size' => 20,
'next_text' => '', 'prev_text' => '',
)); 'next_text' => '',
?> )
);
?>
</footer> </footer>
</main><!-- .content-area --> </main><!-- .content-area -->
<?php //get_sidebar(); ?> <?php // get_sidebar(); ?>
<?php get_footer(); ?> <?php get_footer(); ?>

View File

@ -50,9 +50,13 @@ function twentysixteen_upgrade_notice() {
* @global string $wp_version WordPress version. * @global string $wp_version WordPress version.
*/ */
function twentysixteen_customize() { function twentysixteen_customize() {
wp_die( sprintf( __( 'Twenty Sixteen requires at least WordPress version 4.4. You are running version %s. Please upgrade and try again.', 'twentysixteen' ), $GLOBALS['wp_version'] ), '', array( wp_die(
'back_link' => true, sprintf( __( 'Twenty Sixteen requires at least WordPress version 4.4. You are running version %s. Please upgrade and try again.', 'twentysixteen' ), $GLOBALS['wp_version'] ),
) ); '',
array(
'back_link' => true,
)
);
} }
add_action( 'load-customize.php', 'twentysixteen_customize' ); add_action( 'load-customize.php', 'twentysixteen_customize' );

View File

@ -30,9 +30,15 @@ function twentysixteen_custom_header_and_background() {
* @type string $default-color Default color of the background. * @type string $default-color Default color of the background.
* } * }
*/ */
add_theme_support( 'custom-background', apply_filters( 'twentysixteen_custom_background_args', array( add_theme_support(
'default-color' => $default_background_color, 'custom-background',
) ) ); apply_filters(
'twentysixteen_custom_background_args',
array(
'default-color' => $default_background_color,
)
)
);
/** /**
* Filter the arguments used when adding 'custom-header' support in Twenty Sixteen. * Filter the arguments used when adding 'custom-header' support in Twenty Sixteen.
@ -50,34 +56,40 @@ function twentysixteen_custom_header_and_background() {
* displayed on the blog. * displayed on the blog.
* } * }
*/ */
add_theme_support( 'custom-header', apply_filters( 'twentysixteen_custom_header_args', array( add_theme_support(
'default-text-color' => $default_text_color, 'custom-header',
'width' => 1200, apply_filters(
'height' => 280, 'twentysixteen_custom_header_args',
'flex-height' => true, array(
'wp-head-callback' => 'twentysixteen_header_style', 'default-text-color' => $default_text_color,
) ) ); 'width' => 1200,
'height' => 280,
'flex-height' => true,
'wp-head-callback' => 'twentysixteen_header_style',
)
)
);
} }
add_action( 'after_setup_theme', 'twentysixteen_custom_header_and_background' ); add_action( 'after_setup_theme', 'twentysixteen_custom_header_and_background' );
if ( ! function_exists( 'twentysixteen_header_style' ) ) : if ( ! function_exists( 'twentysixteen_header_style' ) ) :
/** /**
* Styles the header text displayed on the site. * Styles the header text displayed on the site.
* *
* Create your own twentysixteen_header_style() function to override in a child theme. * Create your own twentysixteen_header_style() function to override in a child theme.
* *
* @since Twenty Sixteen 1.0 * @since Twenty Sixteen 1.0
* *
* @see twentysixteen_custom_header_and_background(). * @see twentysixteen_custom_header_and_background().
*/ */
function twentysixteen_header_style() { function twentysixteen_header_style() {
// If the header text option is untouched, let's bail. // If the header text option is untouched, let's bail.
if ( display_header_text() ) { if ( display_header_text() ) {
return; return;
} }
// If the header text has been hidden. // If the header text has been hidden.
?> ?>
<style type="text/css" id="twentysixteen-header-css"> <style type="text/css" id="twentysixteen-header-css">
.site-branding { .site-branding {
margin: 0 auto 0 0; margin: 0 auto 0 0;
@ -89,8 +101,8 @@ function twentysixteen_header_style() {
position: absolute; position: absolute;
} }
</style> </style>
<?php <?php
} }
endif; // twentysixteen_header_style endif; // twentysixteen_header_style
/** /**
@ -107,83 +119,131 @@ function twentysixteen_customize_register( $wp_customize ) {
$wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage'; $wp_customize->get_setting( 'blogdescription' )->transport = 'postMessage';
if ( isset( $wp_customize->selective_refresh ) ) { if ( isset( $wp_customize->selective_refresh ) ) {
$wp_customize->selective_refresh->add_partial( 'blogname', array( $wp_customize->selective_refresh->add_partial(
'selector' => '.site-title a', 'blogname',
'container_inclusive' => false, array(
'render_callback' => 'twentysixteen_customize_partial_blogname', 'selector' => '.site-title a',
) ); 'container_inclusive' => false,
$wp_customize->selective_refresh->add_partial( 'blogdescription', array( 'render_callback' => 'twentysixteen_customize_partial_blogname',
'selector' => '.site-description', )
'container_inclusive' => false, );
'render_callback' => 'twentysixteen_customize_partial_blogdescription', $wp_customize->selective_refresh->add_partial(
) ); 'blogdescription',
array(
'selector' => '.site-description',
'container_inclusive' => false,
'render_callback' => 'twentysixteen_customize_partial_blogdescription',
)
);
} }
// Add color scheme setting and control. // Add color scheme setting and control.
$wp_customize->add_setting( 'color_scheme', array( $wp_customize->add_setting(
'default' => 'default', 'color_scheme',
'sanitize_callback' => 'twentysixteen_sanitize_color_scheme', array(
'transport' => 'postMessage', 'default' => 'default',
) ); 'sanitize_callback' => 'twentysixteen_sanitize_color_scheme',
'transport' => 'postMessage',
)
);
$wp_customize->add_control( 'color_scheme', array( $wp_customize->add_control(
'label' => __( 'Base Color Scheme', 'twentysixteen' ), 'color_scheme',
'section' => 'colors', array(
'type' => 'select', 'label' => __( 'Base Color Scheme', 'twentysixteen' ),
'choices' => twentysixteen_get_color_scheme_choices(), 'section' => 'colors',
'priority' => 1, 'type' => 'select',
) ); 'choices' => twentysixteen_get_color_scheme_choices(),
'priority' => 1,
)
);
// Add page background color setting and control. // Add page background color setting and control.
$wp_customize->add_setting( 'page_background_color', array( $wp_customize->add_setting(
'default' => $color_scheme[1], 'page_background_color',
'sanitize_callback' => 'sanitize_hex_color', array(
'transport' => 'postMessage', 'default' => $color_scheme[1],
) ); 'sanitize_callback' => 'sanitize_hex_color',
'transport' => 'postMessage',
)
);
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'page_background_color', array( $wp_customize->add_control(
'label' => __( 'Page Background Color', 'twentysixteen' ), new WP_Customize_Color_Control(
'section' => 'colors', $wp_customize,
) ) ); 'page_background_color',
array(
'label' => __( 'Page Background Color', 'twentysixteen' ),
'section' => 'colors',
)
)
);
// Remove the core header textcolor control, as it shares the main text color. // Remove the core header textcolor control, as it shares the main text color.
$wp_customize->remove_control( 'header_textcolor' ); $wp_customize->remove_control( 'header_textcolor' );
// Add link color setting and control. // Add link color setting and control.
$wp_customize->add_setting( 'link_color', array( $wp_customize->add_setting(
'default' => $color_scheme[2], 'link_color',
'sanitize_callback' => 'sanitize_hex_color', array(
'transport' => 'postMessage', 'default' => $color_scheme[2],
) ); 'sanitize_callback' => 'sanitize_hex_color',
'transport' => 'postMessage',
)
);
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'link_color', array( $wp_customize->add_control(
'label' => __( 'Link Color', 'twentysixteen' ), new WP_Customize_Color_Control(
'section' => 'colors', $wp_customize,
) ) ); 'link_color',
array(
'label' => __( 'Link Color', 'twentysixteen' ),
'section' => 'colors',
)
)
);
// Add main text color setting and control. // Add main text color setting and control.
$wp_customize->add_setting( 'main_text_color', array( $wp_customize->add_setting(
'default' => $color_scheme[3], 'main_text_color',
'sanitize_callback' => 'sanitize_hex_color', array(
'transport' => 'postMessage', 'default' => $color_scheme[3],
) ); 'sanitize_callback' => 'sanitize_hex_color',
'transport' => 'postMessage',
)
);
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'main_text_color', array( $wp_customize->add_control(
'label' => __( 'Main Text Color', 'twentysixteen' ), new WP_Customize_Color_Control(
'section' => 'colors', $wp_customize,
) ) ); 'main_text_color',
array(
'label' => __( 'Main Text Color', 'twentysixteen' ),
'section' => 'colors',
)
)
);
// Add secondary text color setting and control. // Add secondary text color setting and control.
$wp_customize->add_setting( 'secondary_text_color', array( $wp_customize->add_setting(
'default' => $color_scheme[4], 'secondary_text_color',
'sanitize_callback' => 'sanitize_hex_color', array(
'transport' => 'postMessage', 'default' => $color_scheme[4],
) ); 'sanitize_callback' => 'sanitize_hex_color',
'transport' => 'postMessage',
)
);
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'secondary_text_color', array( $wp_customize->add_control(
'label' => __( 'Secondary Text Color', 'twentysixteen' ), new WP_Customize_Color_Control(
'section' => 'colors', $wp_customize,
) ) ); 'secondary_text_color',
array(
'label' => __( 'Secondary Text Color', 'twentysixteen' ),
'section' => 'colors',
)
)
);
} }
add_action( 'customize_register', 'twentysixteen_customize_register', 11 ); add_action( 'customize_register', 'twentysixteen_customize_register', 11 );
@ -248,127 +308,130 @@ function twentysixteen_get_color_schemes() {
* } * }
* } * }
*/ */
return apply_filters( 'twentysixteen_color_schemes', array( return apply_filters(
'default' => array( 'twentysixteen_color_schemes',
'label' => __( 'Default', 'twentysixteen' ), array(
'colors' => array( 'default' => array(
'#1a1a1a', 'label' => __( 'Default', 'twentysixteen' ),
'#ffffff', 'colors' => array(
'#007acc', '#1a1a1a',
'#1a1a1a', '#ffffff',
'#686868', '#007acc',
'#1a1a1a',
'#686868',
),
), ),
), 'dark' => array(
'dark' => array( 'label' => __( 'Dark', 'twentysixteen' ),
'label' => __( 'Dark', 'twentysixteen' ), 'colors' => array(
'colors' => array( '#262626',
'#262626', '#1a1a1a',
'#1a1a1a', '#9adffd',
'#9adffd', '#e5e5e5',
'#e5e5e5', '#c1c1c1',
'#c1c1c1', ),
), ),
), 'gray' => array(
'gray' => array( 'label' => __( 'Gray', 'twentysixteen' ),
'label' => __( 'Gray', 'twentysixteen' ), 'colors' => array(
'colors' => array( '#616a73',
'#616a73', '#4d545c',
'#4d545c', '#c7c7c7',
'#c7c7c7', '#f2f2f2',
'#f2f2f2', '#f2f2f2',
'#f2f2f2', ),
), ),
), 'red' => array(
'red' => array( 'label' => __( 'Red', 'twentysixteen' ),
'label' => __( 'Red', 'twentysixteen' ), 'colors' => array(
'colors' => array( '#ffffff',
'#ffffff', '#ff675f',
'#ff675f', '#640c1f',
'#640c1f', '#402b30',
'#402b30', '#402b30',
'#402b30', ),
), ),
), 'yellow' => array(
'yellow' => array( 'label' => __( 'Yellow', 'twentysixteen' ),
'label' => __( 'Yellow', 'twentysixteen' ), 'colors' => array(
'colors' => array( '#3b3721',
'#3b3721', '#ffef8e',
'#ffef8e', '#774e24',
'#774e24', '#3b3721',
'#3b3721', '#5b4d3e',
'#5b4d3e', ),
), ),
), )
) ); );
} }
if ( ! function_exists( 'twentysixteen_get_color_scheme' ) ) : if ( ! function_exists( 'twentysixteen_get_color_scheme' ) ) :
/** /**
* Retrieves the current Twenty Sixteen color scheme. * Retrieves the current Twenty Sixteen color scheme.
* *
* Create your own twentysixteen_get_color_scheme() function to override in a child theme. * Create your own twentysixteen_get_color_scheme() function to override in a child theme.
* *
* @since Twenty Sixteen 1.0 * @since Twenty Sixteen 1.0
* *
* @return array An associative array of either the current or default color scheme HEX values. * @return array An associative array of either the current or default color scheme HEX values.
*/ */
function twentysixteen_get_color_scheme() { function twentysixteen_get_color_scheme() {
$color_scheme_option = get_theme_mod( 'color_scheme', 'default' ); $color_scheme_option = get_theme_mod( 'color_scheme', 'default' );
$color_schemes = twentysixteen_get_color_schemes(); $color_schemes = twentysixteen_get_color_schemes();
if ( array_key_exists( $color_scheme_option, $color_schemes ) ) { if ( array_key_exists( $color_scheme_option, $color_schemes ) ) {
return $color_schemes[ $color_scheme_option ]['colors']; return $color_schemes[ $color_scheme_option ]['colors'];
}
return $color_schemes['default']['colors'];
} }
return $color_schemes['default']['colors'];
}
endif; // twentysixteen_get_color_scheme endif; // twentysixteen_get_color_scheme
if ( ! function_exists( 'twentysixteen_get_color_scheme_choices' ) ) : if ( ! function_exists( 'twentysixteen_get_color_scheme_choices' ) ) :
/** /**
* Retrieves an array of color scheme choices registered for Twenty Sixteen. * Retrieves an array of color scheme choices registered for Twenty Sixteen.
* *
* Create your own twentysixteen_get_color_scheme_choices() function to override * Create your own twentysixteen_get_color_scheme_choices() function to override
* in a child theme. * in a child theme.
* *
* @since Twenty Sixteen 1.0 * @since Twenty Sixteen 1.0
* *
* @return array Array of color schemes. * @return array Array of color schemes.
*/ */
function twentysixteen_get_color_scheme_choices() { function twentysixteen_get_color_scheme_choices() {
$color_schemes = twentysixteen_get_color_schemes(); $color_schemes = twentysixteen_get_color_schemes();
$color_scheme_control_options = array(); $color_scheme_control_options = array();
foreach ( $color_schemes as $color_scheme => $value ) { foreach ( $color_schemes as $color_scheme => $value ) {
$color_scheme_control_options[ $color_scheme ] = $value['label']; $color_scheme_control_options[ $color_scheme ] = $value['label'];
}
return $color_scheme_control_options;
} }
return $color_scheme_control_options;
}
endif; // twentysixteen_get_color_scheme_choices endif; // twentysixteen_get_color_scheme_choices
if ( ! function_exists( 'twentysixteen_sanitize_color_scheme' ) ) : if ( ! function_exists( 'twentysixteen_sanitize_color_scheme' ) ) :
/** /**
* Handles sanitization for Twenty Sixteen color schemes. * Handles sanitization for Twenty Sixteen color schemes.
* *
* Create your own twentysixteen_sanitize_color_scheme() function to override * Create your own twentysixteen_sanitize_color_scheme() function to override
* in a child theme. * in a child theme.
* *
* @since Twenty Sixteen 1.0 * @since Twenty Sixteen 1.0
* *
* @param string $value Color scheme name value. * @param string $value Color scheme name value.
* @return string Color scheme name. * @return string Color scheme name.
*/ */
function twentysixteen_sanitize_color_scheme( $value ) { function twentysixteen_sanitize_color_scheme( $value ) {
$color_schemes = twentysixteen_get_color_scheme_choices(); $color_schemes = twentysixteen_get_color_scheme_choices();
if ( ! array_key_exists( $value, $color_schemes ) ) { if ( ! array_key_exists( $value, $color_schemes ) ) {
return 'default'; return 'default';
}
return $value;
} }
return $value;
}
endif; // twentysixteen_sanitize_color_scheme endif; // twentysixteen_sanitize_color_scheme
/** /**
@ -445,14 +508,17 @@ add_action( 'customize_preview_init', 'twentysixteen_customize_preview_js' );
* @return string Color scheme CSS. * @return string Color scheme CSS.
*/ */
function twentysixteen_get_color_scheme_css( $colors ) { function twentysixteen_get_color_scheme_css( $colors ) {
$colors = wp_parse_args( $colors, array( $colors = wp_parse_args(
'background_color' => '', $colors,
'page_background_color' => '', array(
'link_color' => '', 'background_color' => '',
'main_text_color' => '', 'page_background_color' => '',
'secondary_text_color' => '', 'link_color' => '',
'border_color' => '', 'main_text_color' => '',
) ); 'secondary_text_color' => '',
'border_color' => '',
)
);
return <<<CSS return <<<CSS
/* Color Scheme */ /* Color Scheme */

View File

@ -10,126 +10,131 @@
*/ */
if ( ! function_exists( 'twentysixteen_entry_meta' ) ) : if ( ! function_exists( 'twentysixteen_entry_meta' ) ) :
/** /**
* Prints HTML with meta information for the categories, tags. * Prints HTML with meta information for the categories, tags.
* *
* Create your own twentysixteen_entry_meta() function to override in a child theme. * Create your own twentysixteen_entry_meta() function to override in a child theme.
* *
* @since Twenty Sixteen 1.0 * @since Twenty Sixteen 1.0
*/ */
function twentysixteen_entry_meta() { function twentysixteen_entry_meta() {
if ( 'post' === get_post_type() ) { if ( 'post' === get_post_type() ) {
$author_avatar_size = apply_filters( 'twentysixteen_author_avatar_size', 49 ); $author_avatar_size = apply_filters( 'twentysixteen_author_avatar_size', 49 );
printf( '<span class="byline"><span class="author">%1$s<a class="url fn n" href="%3$s">%4$s</a></span></span>', printf(
get_avatar( get_the_author_meta( 'user_email' ), $author_avatar_size ), '<span class="byline"><span class="author">%1$s<a class="url fn n" href="%3$s">%4$s</a></span></span>',
_x( 'Author', 'Used before post author name.', 'twentysixteen' ), get_avatar( get_the_author_meta( 'user_email' ), $author_avatar_size ),
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ), _x( 'Author', 'Used before post author name.', 'twentysixteen' ),
get_the_author() esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
); get_the_author()
} );
}
if ( in_array( get_post_type(), array( 'post', 'attachment' ) ) ) { if ( in_array( get_post_type(), array( 'post', 'attachment' ) ) ) {
twentysixteen_entry_date(); twentysixteen_entry_date();
} }
$format = get_post_format(); $format = get_post_format();
if ( current_theme_supports( 'post-formats', $format ) ) { if ( current_theme_supports( 'post-formats', $format ) ) {
printf( '<span class="entry-format">%1$s<a href="%2$s">%3$s</a></span>', printf(
sprintf( '<span class="screen-reader-text">%s </span></div>', _x( 'Format', 'Used before post format.', 'twentysixteen' ) ), '<span class="entry-format">%1$s<a href="%2$s">%3$s</a></span>',
esc_url( get_post_format_link( $format ) ), sprintf( '<span class="screen-reader-text">%s </span></div>', _x( 'Format', 'Used before post format.', 'twentysixteen' ) ),
get_post_format_string( $format ) esc_url( get_post_format_link( $format ) ),
); get_post_format_string( $format )
} );
}
edit_post_link(
sprintf( edit_post_link(
sprintf(
/* translators: %s: Name of current post */ /* translators: %s: Name of current post */
__( 'Edit', 'twentysixteen' ), __( 'Edit', 'twentysixteen' ),
get_the_title() get_the_title()
), ),
'<span class="edit-link">', '<span class="edit-link">',
'</span>' '</span>'
); );
}
}
endif; endif;
if ( ! function_exists( 'twentysixteen_entry_date' ) ) : if ( ! function_exists( 'twentysixteen_entry_date' ) ) :
/** /**
* Prints HTML with date information for current post. * Prints HTML with date information for current post.
* *
* Create your own twentysixteen_entry_date() function to override in a child theme. * Create your own twentysixteen_entry_date() function to override in a child theme.
* *
* @since Twenty Sixteen 1.0 * @since Twenty Sixteen 1.0
*/ */
function twentysixteen_entry_date() { function twentysixteen_entry_date() {
$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>'; $time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) {
$time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time>'; $time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time>';
}
$time_string = sprintf(
$time_string,
esc_attr( get_the_date( 'c' ) ),
get_the_date(),
esc_attr( get_the_modified_date( 'c' ) ),
get_the_modified_date()
);
printf(
'<span class="posted-on"><a href="%2$s" rel="bookmark">%3$s</a></span>',
_x( 'Posted on', 'Used before publish date.', 'bengoldsworthy' ),
esc_url( get_permalink() ),
$time_string
);
} }
$time_string = sprintf( $time_string,
esc_attr( get_the_date( 'c' ) ),
get_the_date(),
esc_attr( get_the_modified_date( 'c' ) ),
get_the_modified_date()
);
printf( '<span class="posted-on"><a href="%2$s" rel="bookmark">%3$s</a></span>',
_x( 'Posted on', 'Used before publish date.', 'bengoldsworthy' ),
esc_url( get_permalink() ),
$time_string
);
}
endif; endif;
if ( ! function_exists( 'twentysixteen_entry_taxonomies' ) ) : if ( ! function_exists( 'twentysixteen_entry_taxonomies' ) ) :
/** /**
* Prints HTML with category and tags for current post. * Prints HTML with category and tags for current post.
* *
* Create your own twentysixteen_entry_taxonomies() function to override in a child theme. * Create your own twentysixteen_entry_taxonomies() function to override in a child theme.
* *
* @since Twenty Sixteen 1.0 * @since Twenty Sixteen 1.0
*/ */
function twentysixteen_entry_taxonomies() { function twentysixteen_entry_taxonomies() {
$categories_list = get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'twentysixteen' ) ); $categories_list = get_the_category_list( _x( ', ', 'Used between list items, there is a space after the comma.', 'twentysixteen' ) );
if ( $categories_list && twentysixteen_categorized_blog() ) { if ( $categories_list && twentysixteen_categorized_blog() ) {
printf( '<span class="cat-links"><span class="screen-reader-text">%1$s </span>%2$s</span>', printf(
_x( 'Categories', 'Used before category names.', 'twentysixteen' ), '<span class="cat-links"><span class="screen-reader-text">%1$s </span>%2$s</span>',
$categories_list _x( 'Categories', 'Used before category names.', 'twentysixteen' ),
); $categories_list
} );
}
$tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'twentysixteen' ) ); $tags_list = get_the_tag_list( '', _x( ', ', 'Used between list items, there is a space after the comma.', 'twentysixteen' ) );
if ( $tags_list ) { if ( $tags_list ) {
printf( '<span class="tags-links"><span class="screen-reader-text">%1$s </span>%2$s</span>', printf(
_x( 'Tags', 'Used before tag names.', 'twentysixteen' ), '<span class="tags-links"><span class="screen-reader-text">%1$s </span>%2$s</span>',
$tags_list _x( 'Tags', 'Used before tag names.', 'twentysixteen' ),
); $tags_list
);
}
} }
}
endif; endif;
if ( ! function_exists( 'twentysixteen_post_thumbnail' ) ) : if ( ! function_exists( 'twentysixteen_post_thumbnail' ) ) :
/** /**
* Displays an optional post thumbnail. * Displays an optional post thumbnail.
* *
* Wraps the post thumbnail in an anchor element on index views, or a div * Wraps the post thumbnail in an anchor element on index views, or a div
* element when on single views. * element when on single views.
* *
* Create your own twentysixteen_post_thumbnail() function to override in a child theme. * Create your own twentysixteen_post_thumbnail() function to override in a child theme.
* *
* @since Twenty Sixteen 1.0 * @since Twenty Sixteen 1.0
*/ */
function twentysixteen_post_thumbnail() { function twentysixteen_post_thumbnail() {
if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) { if ( post_password_required() || is_attachment() || ! has_post_thumbnail() ) {
return; return;
} }
if ( is_singular() ) : if ( is_singular() ) :
?> ?>
<div class="post-header-image"> <div class="post-header-image">
<div class="post-title"><?php the_title( '<h2 class="title">', '</h2>' ); ?></div> <div class="post-title"><?php the_title( '<h2 class="title">', '</h2>' ); ?></div>
@ -138,19 +143,20 @@ function twentysixteen_post_thumbnail() {
<?php else : ?> <?php else : ?>
<!--<a class="post-thumbnail" href="<?php //the_permalink(); ?>" aria-hidden="true"> <!--<a class="post-thumbnail" href="<?php // the_permalink(); ?>" aria-hidden="true">
<div class="read-div">Read</div> <div class="read-div">Read</div>
<?php //the_post_thumbnail( 'post-thumbnail', array( 'alt' => the_title_attribute( 'echo=0' ) ) ); ?> <?php // the_post_thumbnail( 'post-thumbnail', array( 'alt' => the_title_attribute( 'echo=0' ) ) ); ?>
</a>--> </a>-->
<a class="post-thumbnail" href="<?php the_permalink(); ?>" aria-hidden="true"> <a class="post-thumbnail" href="<?php the_permalink(); ?>" aria-hidden="true">
<div class="image-thumbnail" style="background-image: url('<?php the_post_thumbnail_url(); ?>');"> <div class="image-thumbnail" style="background-image: url('<?php the_post_thumbnail_url(); ?>');">
<div class="read-div">Read</div> <div class="read-div">Read</div>
<?php //the_post_thumbnail( 'post-thumbnail', array( 'alt' => the_title_attribute( 'echo=0' ) ) ); ?> <?php // the_post_thumbnail( 'post-thumbnail', array( 'alt' => the_title_attribute( 'echo=0' ) ) ); ?>
</div> </div>
</a> </a>
<?php endif; // End is_singular() <?php
} endif; // End is_singular()
}
endif; endif;
if ( ! function_exists( 'twentysixteen_excerpt' ) ) : if ( ! function_exists( 'twentysixteen_excerpt' ) ) :
@ -168,34 +174,37 @@ if ( ! function_exists( 'twentysixteen_excerpt' ) ) :
function twentysixteen_excerpt( $class = 'entry-summary' ) { function twentysixteen_excerpt( $class = 'entry-summary' ) {
$class = esc_attr( $class ); $class = esc_attr( $class );
if ( has_excerpt() || is_search() ) : ?> if ( has_excerpt() || is_search() ) :
?>
<div class="<?php echo $class; ?>"> <div class="<?php echo $class; ?>">
<?php the_excerpt(); ?> <?php the_excerpt(); ?>
</div><!-- .<?php echo $class; ?> --> </div><!-- .<?php echo $class; ?> -->
<?php endif; <?php
endif;
} }
endif; endif;
if ( ! function_exists( 'twentysixteen_excerpt_more' ) && ! is_admin() ) : if ( ! function_exists( 'twentysixteen_excerpt_more' ) && ! is_admin() ) :
/** /**
* Replaces "[...]" (appended to automatically generated excerpts) with ... and * Replaces "[...]" (appended to automatically generated excerpts) with ... and
* a 'Continue reading' link. * a 'Continue reading' link.
* *
* Create your own twentysixteen_excerpt_more() function to override in a child theme. * Create your own twentysixteen_excerpt_more() function to override in a child theme.
* *
* @since Twenty Sixteen 1.0 * @since Twenty Sixteen 1.0
* *
* @return string 'Continue reading' link prepended with an ellipsis. * @return string 'Continue reading' link prepended with an ellipsis.
*/ */
function twentysixteen_excerpt_more() { function twentysixteen_excerpt_more() {
$link = sprintf( '<a href="%1$s" class="more-link">%2$s</a>', $link = sprintf(
esc_url( get_permalink( get_the_ID() ) ), '<a href="%1$s" class="more-link">%2$s</a>',
/* translators: %s: Name of current post */ esc_url( get_permalink( get_the_ID() ) ),
sprintf( __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ), get_the_title( get_the_ID() ) ) /* translators: %s: Name of current post */
); sprintf( __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'twentysixteen' ), get_the_title( get_the_ID() ) )
return ' &hellip; ' . $link; );
} return ' &hellip; ' . $link;
add_filter( 'excerpt_more', 'twentysixteen_excerpt_more' ); }
add_filter( 'excerpt_more', 'twentysixteen_excerpt_more' );
endif; endif;
/** /**
@ -210,11 +219,13 @@ endif;
function twentysixteen_categorized_blog() { function twentysixteen_categorized_blog() {
if ( false === ( $all_the_cool_cats = get_transient( 'twentysixteen_categories' ) ) ) { if ( false === ( $all_the_cool_cats = get_transient( 'twentysixteen_categories' ) ) ) {
// Create an array of all the categories that are attached to posts. // Create an array of all the categories that are attached to posts.
$all_the_cool_cats = get_categories( array( $all_the_cool_cats = get_categories(
'fields' => 'ids', array(
// We only need to know if there is more than one category. 'fields' => 'ids',
'number' => 2, // We only need to know if there is more than one category.
) ); 'number' => 2,
)
);
// Count the number of categories that are attached to the posts. // Count the number of categories that are attached to the posts.
$all_the_cool_cats = count( $all_the_cool_cats ); $all_the_cool_cats = count( $all_the_cool_cats );
@ -244,19 +255,19 @@ function twentysixteen_category_transient_flusher() {
delete_transient( 'twentysixteen_categories' ); delete_transient( 'twentysixteen_categories' );
} }
add_action( 'edit_category', 'twentysixteen_category_transient_flusher' ); add_action( 'edit_category', 'twentysixteen_category_transient_flusher' );
add_action( 'save_post', 'twentysixteen_category_transient_flusher' ); add_action( 'save_post', 'twentysixteen_category_transient_flusher' );
if ( ! function_exists( 'twentysixteen_the_custom_logo' ) ) : if ( ! function_exists( 'twentysixteen_the_custom_logo' ) ) :
/** /**
* Displays the optional custom logo. * Displays the optional custom logo.
* *
* Does nothing if the custom logo is not available. * Does nothing if the custom logo is not available.
* *
* @since Twenty Sixteen 1.2 * @since Twenty Sixteen 1.2
*/ */
function twentysixteen_the_custom_logo() { function twentysixteen_the_custom_logo() {
if ( function_exists( 'the_custom_logo' ) ) { if ( function_exists( 'the_custom_logo' ) ) {
the_custom_logo(); the_custom_logo();
}
} }
}
endif; endif;

View File

@ -2,7 +2,7 @@
/* /*
* Template Name: Experience by Companies * Template Name: Experience by Companies
*/ */
/** /**
* *
* *
@ -17,49 +17,52 @@ get_header(); ?>
<div id="experience-wrapper" class="content-area col-10 col-m-12"> <div id="experience-wrapper" class="content-area col-10 col-m-12">
<!--Page Title & Details--> <!--Page Title & Details-->
<header class="post-header-title"> <header class="post-header-title">
<h1 style="margin-bottom: 20px;" id="page-title">Experience.</h1> <h1 style="margin-bottom: 20px;" id="page-title">Experience.</h1>
<?php while (have_posts()) : the_post(); ?> <?php
<div class="entry-content tile" id="taxonomy-description"> while ( have_posts() ) :
<?php the_content() ?> the_post();
</div> ?>
<div class="entry-content tile" id="taxonomy-description">
<div style="width: 70%; margin: auto; margin-top: 20px; border: 2px dashed #020202; padding: 20px; border-radius: 25px;" class="entry-content tile" id="settings"> <?php the_content(); ?>
<h3 style="margin-bottom: 14px;" class="subheading">Settings</h3> </div>
<form action="/experience-by-companies" id="settings" method="GET">
<input class="checkbox" type="checkbox" id="toplevel" value="toplevel" checked="checked"> <div style="width: 70%; margin: auto; margin-top: 20px; border: 2px dashed #020202; padding: 20px; border-radius: 25px;" class="entry-content tile" id="settings">
<label for="toplevel">Display only top-level organisations</label> <h3 style="margin-bottom: 14px;" class="subheading">Settings</h3>
<br> <form action="/experience-by-companies" id="settings" method="GET">
<fieldset> <input class="checkbox" type="checkbox" id="toplevel" value="toplevel" checked="checked">
<legend><p style="margin-top: 14px; margin-bottom: 14px;">Display only organisations with associated:</p></legend> <label for="toplevel">Display only top-level organisations</label>
<div class="controlgroup" id="typestodisplay"> <br>
<label for="jobs">Roles <span class="dashicons dashicons-hammer"></span></label> <fieldset>
<input type="checkbox" name="jobs" id="jobs" checked="checked"> <legend><p style="margin-top: 14px; margin-bottom: 14px;">Display only organisations with associated:</p></legend>
<label class="currentjobs" for="currentjobs">Display only current roles</label> <div class="controlgroup" id="typestodisplay">
<input class="currentjobs" type="checkbox" name="currentjobs" id="currentjobs" checked="checked"> <label for="jobs">Roles <span class="dashicons dashicons-hammer"></span></label>
<label for="posts">Blog Posts <span class="dashicons dashicons-admin-post"></span></label> <input type="checkbox" name="jobs" id="jobs" checked="checked">
<input type="checkbox" name="posts" id="posts"> <label class="currentjobs" for="currentjobs">Display only current roles</label>
<label for="websites">Websites <span class="dashicons dashicons-schedule"></span></label> <input class="currentjobs" type="checkbox" name="currentjobs" id="currentjobs" checked="checked">
<input type="checkbox" name="websites" id="websites"> <label for="posts">Blog Posts <span class="dashicons dashicons-admin-post"></span></label>
<label for="programs">Programs <span class="dashicons dashicons-desktop"></span></label> <input type="checkbox" name="posts" id="posts">
<input type="checkbox" name="programs" id="programs"> <label for="websites">Websites <span class="dashicons dashicons-schedule"></span></label>
<label for="writings">Writings <span class="dashicons dashicons-format-aside"></span></label> <input type="checkbox" name="websites" id="websites">
<input type="checkbox" name="writings" id="writings"> <label for="programs">Programs <span class="dashicons dashicons-desktop"></span></label>
<label for="videos">Videos <span class="dashicons dashicons-video-alt"></span></label> <input type="checkbox" name="programs" id="programs">
<input type="checkbox" name="videos" id="videos"> <label for="writings">Writings <span class="dashicons dashicons-format-aside"></span></label>
<label for="other">Other <span class="dashicons dashicons-archive"></span></label> <input type="checkbox" name="writings" id="writings">
<input type="checkbox" name="other" id="other"> <label for="videos">Videos <span class="dashicons dashicons-video-alt"></span></label>
<label for="qualifications">Qualifications <span class="dashicons dashicons-id"></span></label> <input type="checkbox" name="videos" id="videos">
<input type="checkbox" name="qualifications" id="qualifications"> <label for="other">Other <span class="dashicons dashicons-archive"></span></label>
<label class="expired" for="expired">Show expired qualifications</label> <input type="checkbox" name="other" id="other">
<input class="expired" type="checkbox" name="expired" id="expired"> <label for="qualifications">Qualifications <span class="dashicons dashicons-id"></span></label>
<label for="awards">Awards <span class="dashicons dashicons-awards"></span></label> <input type="checkbox" name="qualifications" id="qualifications">
<input type="checkbox" name="awards" id="awards"> <label class="expired" for="expired">Show expired qualifications</label>
</div> <input class="expired" type="checkbox" name="expired" id="expired">
</fieldset> <label for="awards">Awards <span class="dashicons dashicons-awards"></span></label>
<br> <input type="checkbox" name="awards" id="awards">
<input class="ui-button ui-widget ui-corner-all" id="refresh" type="submit" value="Refresh"> </div>
</form> </fieldset>
</div> <br>
<input class="ui-button ui-widget ui-corner-all" id="refresh" type="submit" value="Refresh">
</form>
</div>
<?php endwhile; ?> <?php endwhile; ?>
</header> </header>
@ -70,68 +73,68 @@ get_header(); ?>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script type="text/javascript"> <script type="text/javascript">
// Populates the organisations grid. // Populates the organisations grid.
jQuery(document).ready(function($) { jQuery(document).ready(function($) {
// Sets up jQueryUI elements. // Sets up jQueryUI elements.
$('input:checkbox').checkboxradio(); $('input:checkbox').checkboxradio();
$('.controlgroup').controlgroup(); $('.controlgroup').controlgroup();
$('.refresh').button(); $('.refresh').button();
// Displays the initial organisations grid. // Displays the initial organisations grid.
displayCompanies(); displayCompanies();
$('.expired').hide(); $('.expired').hide();
$('input[type="checkbox"]').change(function() { $('input[type="checkbox"]').change(function() {
$('#refresh').css('border-width', '5px'); $('#refresh').css('border-width', '5px');
}); });
$('#jobs').change(function() { $('#jobs').change(function() {
if($(this).is(":checked")) { if($(this).is(":checked")) {
$('.currentjobs').fadeIn(100); $('.currentjobs').fadeIn(100);
} else { } else {
$('.currentjobs').fadeOut(100); $('.currentjobs').fadeOut(100);
} }
}); });
$('#qualifications').change(function() { $('#qualifications').change(function() {
if($(this).is(":checked")) { if($(this).is(":checked")) {
$('.expired').fadeIn(100); $('.expired').fadeIn(100);
} else { } else {
$('.expired').fadeOut(100); $('.expired').fadeOut(100);
} }
}); });
$('#refresh').click(function(event) { $('#refresh').click(function(event) {
$(this).css('border-width', '1px'); $(this).css('border-width', '1px');
event.preventDefault(); event.preventDefault();
displayCompanies(); displayCompanies();
}); });
function displayCompanies() { function displayCompanies() {
$('#organisations-grid').html('<img class="loading" src="/wp-content/uploads/2016/12/ajax-loader.gif">'); $('#organisations-grid').html('<img class="loading" src="/wp-content/uploads/2016/12/ajax-loader.gif">');
var settings = { var settings = {
'action': 'display_companies', 'action': 'display_companies',
'toplevel': $('#toplevel').is(':checked'), 'toplevel': $('#toplevel').is(':checked'),
'job': $('#jobs').is(':checked'), 'job': $('#jobs').is(':checked'),
'currentjobs': $('#currentjobs').is(':checked'), 'currentjobs': $('#currentjobs').is(':checked'),
'post': $('#posts').is(':checked'), 'post': $('#posts').is(':checked'),
'website': $('#websites').is(':checked'), 'website': $('#websites').is(':checked'),
'program': $('#programs').is(':checked'), 'program': $('#programs').is(':checked'),
'writing': $('#writings').is(':checked'), 'writing': $('#writings').is(':checked'),
'video': $('#videos').is(':checked'), 'video': $('#videos').is(':checked'),
'other': $('#other').is(':checked'), 'other': $('#other').is(':checked'),
'qualification': $('#qualifications').is(':checked'), 'qualification': $('#qualifications').is(':checked'),
'showexpired': $('#expired').is(':checked'), 'showexpired': $('#expired').is(':checked'),
'award': $('#awards').is(':checked'), 'award': $('#awards').is(':checked'),
}; };
$.post("/wp-admin/admin-ajax.php", settings, function(response) { $.post("/wp-admin/admin-ajax.php", settings, function(response) {
$('#organisations-grid').html(response); $('#organisations-grid').html(response);
}); });
} }
}); });
</script> </script>
</div> </div>

View File

@ -1,10 +1,10 @@
<?php <?php
/** /**
* The template for displaying archive pages. * The template for displaying archive pages.
* *
* @subpackage Omphaloskepsis * @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
?> ?>
<?php get_header(); ?> <?php get_header(); ?>
@ -12,74 +12,88 @@
<?php $loop = new WP_Query( $args ); ?> <?php $loop = new WP_Query( $args ); ?>
<header class="entry-content tile location-block"> <header class="entry-content tile location-block">
<div class="post-header-title"> <div class="post-header-title">
<h1 id="page-title">Experience</h1> <h1 id="page-title">Experience</h1>
<h2 id="page-subtitle">by location</h2> <h2 id="page-subtitle">by location</h2>
<?php while (have_posts()) : the_post(); ?> <?php
while ( have_posts() ) :
the_post();
?>
<div class="entry-content" id="taxonomy-description"> <div class="entry-content" id="taxonomy-description">
<?php the_content() ?> <?php the_content(); ?>
<div> <div>
<a class="hyperlink-button" href="?view=countries">Countries</a> <a class="hyperlink-button" href="?view=countries">Countries</a>
<!--<a class="hyperlink-button" href="?view=regions">Regions</a>--> <!--<a class="hyperlink-button" href="?view=regions">Regions</a>-->
<a class="hyperlink-button" href="?view=locations">Locations</a> <a class="hyperlink-button" href="?view=locations">Locations</a>
</div> </div>
</div> </div>
<?php endwhile; ?> <?php endwhile; ?>
</div> </div>
</header> </header>
<?php <?php
$locations = get_terms('location', array('hide_empty' => 0)); $locations = get_terms( 'location', array( 'hide_empty' => 0 ) );
// Gets all of the top-level location terms. // Gets all of the top-level location terms.
$terms = get_terms(array('taxonomy' => 'location', 'term_args' => array('parent' => 0))); $terms = get_terms(
array(
'taxonomy' => 'location',
'term_args' => array( 'parent' => 0 ),
)
);
?> ?>
<div id="primary" class="content-area"> <div id="primary" class="content-area">
<main id="company-main" class="site-main" role="main"> <main id="company-main" class="site-main" role="main">
<div class="row"> <div class="row">
<div id="map" style="height:100vh; width:100%;"></div> <div id="map" style="height:100vh; width:100%;"></div>
</div> </div>
<?php if (!empty($locations)): ?> <?php if ( ! empty( $locations ) ) : ?>
<?php if ($_GET['view'] == "countries"): ?> <?php if ( $_GET['view'] == 'countries' ) : ?>
<?php <?php
$locationsSubset = array_filter($locations, function ($t) { $locationsSubset = array_filter(
return $t->parent != 0 && get_term($t->parent, 'location')->parent == 0; $locations,
}); function ( $t ) {
?> return $t->parent != 0 && get_term( $t->parent, 'location' )->parent == 0;
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> }
<script type="text/javascript"> );
google.charts.load('current', {'packages':['geochart']}); ?>
google.charts.setOnLoadCallback(drawMap); <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
function drawMap() { google.charts.load('current', {'packages':['geochart']});
google.charts.setOnLoadCallback(drawMap);
function drawMap() {
var data = google.visualization.arrayToDataTable([ var data = google.visualization.arrayToDataTable([
['Country'], ['Country'],
<?php foreach ((array)$locationsSubset as $term): ?> <?php foreach ( (array) $locationsSubset as $term ) : ?>
['<?php echo $term->description ?>'], ['<?php echo $term->description; ?>'],
<?php endforeach; ?> <?php endforeach; ?>
]); ]);
var options = {}; var options = {};
var chart = new google.visualization.GeoChart(document.getElementById('map')); var chart = new google.visualization.GeoChart(document.getElementById('map'));
chart.draw(data, options); chart.draw(data, options);
} }
</script> </script>
<?php elseif ($_GET['view'] == "locations"): ?> <?php elseif ( $_GET['view'] == 'locations' ) : ?>
<?php <?php
$locationsSubset = array_filter($locations, function ($t) { $locationsSubset = array_filter(
return $t->parent != 0 && get_term($t->parent, 'location')->parent != 0 && get_term(get_term($t->parent, 'location')->parent, 'location')->parent != 0 && get_term(get_term(get_term($t->parent, 'location')->parent, 'location')->parent, 'location')->parent == 0; $locations,
}); function ( $t ) {
?> return $t->parent != 0 && get_term( $t->parent, 'location' )->parent != 0 && get_term( get_term( $t->parent, 'location' )->parent, 'location' )->parent != 0 && get_term( get_term( get_term( $t->parent, 'location' )->parent, 'location' )->parent, 'location' )->parent == 0;
<script type="text/javascript"> }
var locations = [ );
<?php foreach((array)$locationsSubset as $term): ?> ?>
{<?php echo $term->description ?>}, <script type="text/javascript">
<?php endforeach; ?> var locations = [
] <?php foreach ( (array) $locationsSubset as $term ) : ?>
{<?php echo $term->description; ?>},
function initMap() { <?php endforeach; ?>
]
function initMap() {
var map = new google.maps.Map(document.getElementById('map'), { var map = new google.maps.Map(document.getElementById('map'), {
zoom: 3, zoom: 3,
center: {lat: 51.483462, lng: 0.0586198} center: {lat: 51.483462, lng: 0.0586198}
}); });
// Create an array of alphabetical characters used to label the markers. // Create an array of alphabetical characters used to label the markers.
@ -90,22 +104,22 @@
// create an array of markers based on a given "locations" array. // create an array of markers based on a given "locations" array.
// The map() method here has nothing to do with the Google Maps API. // The map() method here has nothing to do with the Google Maps API.
var markers = locations.map(function(location, i) { var markers = locations.map(function(location, i) {
return new google.maps.Marker({ return new google.maps.Marker({
position: location, position: location,
label: labels[i % labels.length] label: labels[i % labels.length]
}); });
}); });
// Add a marker clusterer to manage the markers. // Add a marker clusterer to manage the markers.
var markerCluster = new MarkerClusterer(map, markers, { var markerCluster = new MarkerClusterer(map, markers, {
imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m' imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m'
}); });
} }
</script> </script>
<script src="https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/markerclusterer.js"></script> <script src="https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/markerclusterer.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBsMPnuCM59sC_n11CGxbpbqNY7FRUXnD0&callback=initMap"></script> <script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBsMPnuCM59sC_n11CGxbpbqNY7FRUXnD0&callback=initMap"></script>
<?php endif; ?> <?php endif; ?>
<?php endif; ?> <?php endif; ?>
</main><!-- .site-main --> </main><!-- .site-main -->
</div><!-- .content-area --> </div><!-- .content-area -->

View File

@ -1,32 +1,32 @@
<?php <?php
/** /**
* The template for displaying pages. * The template for displaying pages.
* *
* @package WordPress * @package WordPress
* @subpackage Omphaloskepsis * @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
?> ?>
<?php get_header(); ?> <?php get_header(); ?>
<main id="split-page" role="main"> <main id="split-page" role="main">
<?php <?php
// Start the loop. // Start the loop.
while (have_posts()): while ( have_posts() ) :
the_post(); the_post();
// Include the page content template.
get_template_part('template-parts/content', 'page');
// If comments are open or we have at least one comment, load up the comment template. // Include the page content template.
if (comments_open() || get_comments_number()) { get_template_part( 'template-parts/content', 'page' );
comments_template();
}
// End of the loop. // If comments are open or we have at least one comment, load up the comment template.
endwhile; if ( comments_open() || get_comments_number() ) {
?> comments_template();
}
// End of the loop.
endwhile;
?>
</main> </main>
<?php get_footer(); ?> <?php get_footer(); ?>

34
phpcs.xml Normal file
View File

@ -0,0 +1,34 @@
<?xml version="1.0"?>
<ruleset name="Pivotal Agency">
<description>Pivotol Wordpress Coding Standards</description>
<!-- Scan all files in directory -->
<file>.</file>
<!-- Exclude `plugins/` directory -->
<exclude-pattern>*/plugins/*</exclude-pattern>
<!-- Scan only PHP files -->
<arg name="extensions" value="php"/>
<!-- Show colors in console -->
<arg value="-colors"/>
<!-- Show sniff codes in all reports -->
<arg value="ns"/>
<!-- Include the WordPress-Extra standard. -->
<rule ref="WordPress-Extra">
<!-- Exclude any rules here -->
<exclude name="WordPress.PHP.DisallowShortTernary"/>
</rule>
<!-- Let's also check that everything is properly documented. -->
<rule ref="WordPress-Docs"/>
<!-- Add in some extra rules from other standards. -->
<rule ref="Generic.CodeAnalysis.UnusedFunctionParameter"/>
<rule ref="Generic.Commenting.Todo"/>
<config name="minimum_supported_wp_version" value="4.9"/>
</ruleset>

View File

@ -20,7 +20,8 @@ get_header(); ?>
<?php <?php
// Start the loop. // Start the loop.
while ( have_posts() ) : the_post(); while ( have_posts() ) :
the_post();
/** /**
* Run the loop for the search to output the results. * Run the loop for the search to output the results.
@ -29,17 +30,19 @@ get_header(); ?>
*/ */
get_template_part( 'template-parts/content', 'search' ); get_template_part( 'template-parts/content', 'search' );
// End the loop. // End the loop.
endwhile; endwhile;
// Previous/next page navigation. // Previous/next page navigation.
the_posts_pagination( array( the_posts_pagination(
'prev_text' => __( 'Previous page', 'twentysixteen' ), array(
'next_text' => __( 'Next page', 'twentysixteen' ), 'prev_text' => __( 'Previous page', 'twentysixteen' ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>', 'next_text' => __( 'Next page', 'twentysixteen' ),
) ); 'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'twentysixteen' ) . ' </span>',
)
);
// If no content, include the "No posts found" template. // If no content, include the "No posts found" template.
else : else :
get_template_part( 'template-parts/content', 'none' ); get_template_part( 'template-parts/content', 'none' );

View File

@ -1,26 +1,26 @@
<?php <?php
/** /**
* The template for the sidebar. * The template for the sidebar.
* *
* @package WordPress * @package WordPress
* @subpackage Omphaloskepsis * @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
?> ?>
<nav class="col-2" id="sidebar"> <nav class="col-2" id="sidebar">
<ul id="sidebar-list"> <ul id="sidebar-list">
<li <?php echo $wp->request == 'blog' ? 'class="current"' : ''; ?>> <li <?php echo $wp->request == 'blog' ? 'class="current"' : ''; ?>>
<a href="/blog">Blog</a> <a href="/blog">Blog</a>
<a href="/feed"><i class="fa fa-rss"></i></a> <a href="/feed"><i class="fa fa-rss"></i></a>
</li> </li>
<li><p>~</p></li> <li><p>~</p></li>
<li <?php echo $wp->request == 'website' ? 'class="current"' : ''; ?>><a href="/website">Websites</a></li> <li <?php echo $wp->request == 'website' ? 'class="current"' : ''; ?>><a href="/website">Websites</a></li>
<li <?php echo $wp->request == 'program' ? 'class="current"' : ''; ?>><a href="/program">Programs</a></li> <li <?php echo $wp->request == 'program' ? 'class="current"' : ''; ?>><a href="/program">Programs</a></li>
<li <?php echo $wp->request == 'writing' ? 'class="current"' : ''; ?>><a href="/writing">Writings</a></li> <li <?php echo $wp->request == 'writing' ? 'class="current"' : ''; ?>><a href="/writing">Writings</a></li>
<li <?php echo $wp->request == 'video' ? 'class="current"' : ''; ?>><a href="/video">Videos</a></li> <li <?php echo $wp->request == 'video' ? 'class="current"' : ''; ?>><a href="/video">Videos</a></li>
<li <?php echo $wp->request == 'other' ? 'class="current"' : ''; ?>><a href="/other">Other</a></li> <li <?php echo $wp->request == 'other' ? 'class="current"' : ''; ?>><a href="/other">Other</a></li>
<li><p>~</p></li> <li><p>~</p></li>
<li <?php echo $wp->request == 'experience' ? 'class="current"' : ''; ?>><a href="/experience">Experience (by organisation)</a></li> <li <?php echo $wp->request == 'experience' ? 'class="current"' : ''; ?>><a href="/experience">Experience (by organisation)</a></li>
</ul> </ul>
</nav> </nav>

View File

@ -1,29 +1,30 @@
<?php <?php
/** /**
* The template for displaying all single Pages. * The template for displaying all single Pages.
* *
* @package WordPress * @package WordPress
* @subpackage Omphaloskepsis * @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
?> ?>
<?php get_header(); ?> <?php get_header(); ?>
<main id="split-page" role="main"> <main id="split-page" role="main">
<?php <?php
// Start the loop. // Start the loop.
while (have_posts()): the_post(); while ( have_posts() ) :
// Include the single post content template. the_post();
get_template_part( 'template-parts/content', 'single' ); // Include the single post content template.
get_template_part( 'template-parts/content', 'single' );
// If comments are open or we have at least one comment, load up the comment template.
if (comments_open() || get_comments_number()) { // If comments are open or we have at least one comment, load up the comment template.
comments_template(); if ( comments_open() || get_comments_number() ) {
} comments_template();
// End of the loop. }
endwhile; // End of the loop.
?> endwhile;
?>
</main><!-- .site-main --> </main><!-- .site-main -->
<?php get_footer(); ?> <?php get_footer(); ?>

View File

@ -320,7 +320,7 @@ html {
align-items: center; align-items: center;
grid-template-areas: grid-template-areas:
"post-content-header post-content" "post-content-header post-content"
" post-toc post-content" " post-meta post-content"
" . post-content"; " . post-content";
} }
} }
@ -378,25 +378,39 @@ html {
grid-area: post-date; grid-area: post-date;
} }
#split-page #post-toc { #split-page #post-meta {
grid-area: post-toc; grid-area: post-meta;
width: 100%; width: 100%;
text-align: left; text-align: left;
} }
#split-page #post-toc > h1 { #split-page #post-meta > h1 {
border-bottom: 2px inset var(--dark); border-bottom: 2px inset var(--dark);
margin-top: 0.5em; margin-top: 0.5em;
margin-bottom: 0.5em; margin-bottom: 0.5em;
line-height: 1.2em; line-height: 1.2em;
text-align: center; text-align: left;
} }
#split-page #post-toc > ol > li { #split-page #post-meta h2 {
margin-top: 0.5em;
font-size: 1.4em;
margin-bottom: 0.5em;
line-height: 1.2em;
text-align: left;
}
#split-page #post-meta > #post-contents > ol > li {
margin-top: 0.5em; margin-top: 0.5em;
margin-bottom: 0.5em; margin-bottom: 0.5em;
} }
#split-page #post-meta > #post-tags > a {
margin-top: 0.2em;
margin-left: 1em;
}
#split-page > #wrapper > .body { #split-page > #wrapper > .body {
grid-area: post-content; grid-area: post-content;
display: block; display: block;

View File

@ -1,11 +1,11 @@
<?php <?php
/** /**
* The template for showing experience (by organisation). * The template for showing experience (by organisation).
* *
* @package WordPress * @package WordPress
* @subpackage Omphaloskepsis * @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
?> ?>
<?php get_header(); ?> <?php get_header(); ?>
@ -13,230 +13,259 @@
<?php <?php
// Gets all of the roles attached to the given organisation. // Gets all of the roles attached to the given organisation.
$company = get_queried_object(); $company = get_queried_object();
echo "<!-- ".$company->name."-->"; echo '<!-- ' . $company->name . '-->';
$args= array( $args = array(
'post_type' => array( 'job' ), 'post_type' => array( 'job' ),
'tax_query' => array( 'tax_query' => array(
array( array(
'taxonomy' => 'company', 'taxonomy' => 'company',
'field' => 'slug', 'field' => 'slug',
'terms' => $company->slug, 'terms' => $company->slug,
), ),
), ),
'posts_per_page' => -1 'posts_per_page' => -1,
); );
$loop = new WP_Query( $args ); $loop = new WP_Query( $args );
?> ?>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript"> <script type="text/javascript">
google.charts.load('current', {'packages':['timeline']}); google.charts.load('current', {'packages':['timeline']});
<?php if ($loop->have_posts()): ?> <?php if ( $loop->have_posts() ) : ?>
google.charts.setOnLoadCallback(drawChart); google.charts.setOnLoadCallback(drawChart);
<?php endif; ?> <?php endif; ?>
function drawChart() { function drawChart() {
var container = document.getElementById('timeline'); var container = document.getElementById('timeline');
var chart = new google.visualization.Timeline(container); var chart = new google.visualization.Timeline(container);
var dataTable = new google.visualization.DataTable(); var dataTable = new google.visualization.DataTable();
dataTable.addColumn({ type: 'string', id: 'Type' }); dataTable.addColumn({ type: 'string', id: 'Type' });
dataTable.addColumn({ type: 'string', id: 'Job Title' }); dataTable.addColumn({ type: 'string', id: 'Job Title' });
dataTable.addColumn({ type: 'date', id: 'Start' }); dataTable.addColumn({ type: 'date', id: 'Start' });
dataTable.addColumn({ type: 'date', id: 'End' }); dataTable.addColumn({ type: 'date', id: 'End' });
dataTable.addRows([ dataTable.addRows([
<?php while ($loop->have_posts()): $loop->the_post(); <?php
// Gets all of the roles associated with this organisation and its while ( $loop->have_posts() ) :
// child organisations. $loop->the_post();
$companies = wp_get_object_terms(get_the_ID(), 'company'); // Gets all of the roles associated with this organisation and its
$i = 0; // child organisations.
$currSizeOf = -1; $companies = wp_get_object_terms( get_the_ID(), 'company' );
$i = 0;
foreach ($companies as $company) { $currSizeOf = -1;
if (sizeof(get_ancestors($company->term_id, 'company')) > $currSizeOf) {
$currSizeOf = sizeof(get_ancestors($company->term_id, 'company'));
$lowestDepthCompany = $i++;
}
}
$title = html_entity_decode(get_the_title()); foreach ( $companies as $company ) {
$start = get_the_date(); if ( sizeof( get_ancestors( $company->term_id, 'company' ) ) > $currSizeOf ) {
$end = (!get_post_meta(get_the_ID(), 'end-date', true)) ? date('D M d Y H:i:s O') : get_post_meta(get_the_ID(), 'end-date', true); $currSizeOf = sizeof( get_ancestors( $company->term_id, 'company' ) );
echo "[ '".html_entity_decode($companies[$lowestDepthCompany]->name)."', '$title', new Date('$start'), new Date('$end') ],\n"; $lowestDepthCompany = $i++;
endwhile; ?> }
]); }
// Draws the table, then resizes the element height and re-draws it $title = html_entity_decode( get_the_title() );
// to avoid needing to scroll vertically. $start = get_the_date();
chart.draw(dataTable); $end = ( ! get_post_meta( get_the_ID(), 'end-date', true ) ) ? date( 'D M d Y H:i:s O' ) : get_post_meta( get_the_ID(), 'end-date', true );
var realheight = parseInt(jQuery("#timeline div:first-child div:first-child div:first-child div svg").attr("height"))+70; echo "[ '" . html_entity_decode( $companies[ $lowestDepthCompany ]->name ) . "', '$title', new Date('$start'), new Date('$end') ],\n";
var options = {}; endwhile;
options.height = realheight; ?>
chart.draw(dataTable, options); ]);
// Draws the table, then resizes the element height and re-draws it
// to avoid needing to scroll vertically.
chart.draw(dataTable);
var realheight = parseInt(jQuery("#timeline div:first-child div:first-child div:first-child div svg").attr("height"))+70;
var options = {};
options.height = realheight;
chart.draw(dataTable, options);
} }
</script> </script>
<main id="split-page" role="main"> <main id="split-page" role="main">
<?php <?php
$companyLogo = apply_filters('taxonomy-images-queried-term-image-url', '', array('image_size' => 'full')); $companyLogo = apply_filters( 'taxonomy-images-queried-term-image-url', '', array( 'image_size' => 'full' ) );
$companyName = get_queried_object()->name; $companyName = get_queried_object()->name;
?> ?>
<div id="wrapper"> <div id="wrapper">
<header style="background-image: url('<?php echo $companyLogo ?>'); background-color: <?php echo get_term_meta(get_queried_object()->term_id, 'color')[0] ?>; background-size: contain;"> <header style="background-image: url('<?php echo $companyLogo; ?>'); background-color: <?php echo get_term_meta( get_queried_object()->term_id, 'color' )[0]; ?>; background-size: contain;">
<div> <div>
<?php <?php
if (strlen($companyName) > 70) $small= "2em"; if ( strlen( $companyName ) > 70 ) {
elseif (strlen($companyName) > 35) $small = "3em"; $small = '2em';
elseif (strlen($companyName) > 12) $small = "4em"; } elseif ( strlen( $companyName ) > 35 ) {
else $small = "5em" $small = '3em';
?> } elseif ( strlen( $companyName ) > 12 ) {
<h1 id="post-title" style="font-size: <?php echo $small ?>;"><?php echo $companyName; ?></h1> $small = '4em';
</div> } else {
</header><!-- .entry-header --> $small = '5em';
}
?>
<h1 id="post-title" style="font-size: <?php echo $small; ?>;"><?php echo $companyName; ?></h1>
</div>
</header><!-- .entry-header -->
<main id="organisation-body" class="body"> <main id="organisation-body" class="body">
<section id="description"> <section id="description">
<?php the_archive_description(); ?> <?php the_archive_description(); ?>
</section> </section>
<?php if ($loop->have_posts()): ?> <?php if ( $loop->have_posts() ) : ?>
<section id="timeline"> <section id="timeline">
<div class="row"> <div class="row">
<div id="timeline" class="col-12"> <div id="timeline" class="col-12">
<img class="loading" src="/wp-content/uploads/2016/12/ajax-loader.gif"> <img class="loading" src="/wp-content/uploads/2016/12/ajax-loader.gif">
</div> </div>
</div> </div>
</section> </section>
<?php endif; ?> <?php endif; ?>
<section id="related" class="row"> <section id="related" class="row">
<div id="parents" class="col-6 col-m-12"> <div id="parents" class="col-6 col-m-12">
<?php <?php
if (get_queried_object()->parent != 0) { if ( get_queried_object()->parent != 0 ) {
$parents = apply_filters("taxonomy-images-get-terms", "", $parents = apply_filters(
array( 'taxonomy-images-get-terms',
'having_images' => false, '',
'taxonomy' => 'company', array(
'term_args' => array( 'having_images' => false,
'include' => get_term_by('id', get_queried_object()->parent, 'company')->term_id 'taxonomy' => 'company',
) 'term_args' => array(
) 'include' => get_term_by( 'id', get_queried_object()->parent, 'company' )->term_id,
); ),
} )
);
if (count($parents) > 0): ?> }
<h2 class="subheading">Parent</h2>
<ul class="index">
<?php foreach ((array) $parents as $parent):
$imgURL = wp_get_attachment_image_src($parent->image_id)[0];
$colour = get_term_meta($parent->term_id, 'color', true);
$colour = ($colour != "") ? $colour : "transparent"; ?>
<li><a href="<?php echo esc_url(get_term_link($parent, $parent->taxonomy)) ?>"><?php echo get_term($parent->term_id, 'company')->name ?></a></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
</div>
<div id="children" class="col-6 col-m-12">
<?php
$children = apply_filters("taxonomy-images-get-terms", "", array('having_images' => false, 'taxonomy' => 'company', 'term_args' => array('parent' => get_queried_object()->term_id)));
if (count($children) > 0): ?>
<h2 class="subheading">Child<?php echo (count($children) != 1) ? "ren" : ""; ?></h2>
<ul class="index">
<?php foreach ( (array) $children as $child ):
$imgURL = wp_get_attachment_image_src($child->image_id, 'detail')[0];
$colour = get_term_meta($child->term_id, 'color', true);
$colour = ($colour != "") ? $colour : "transparent"; ?>
<li><a href="<?php echo esc_url(get_term_link($child, $child->taxonomy)) ?>"><?php echo get_term($child->term_id, 'company')->name ?></a></li> if ( count( $parents ) > 0 ) :
<?php endforeach; ?> ?>
</ul> <h2 class="subheading">Parent</h2>
<?php else: ?> <ul class="index">
<p>No children.</p> <?php
<?php endif; ?> foreach ( (array) $parents as $parent ) :
</div> $imgURL = wp_get_attachment_image_src( $parent->image_id )[0];
</section> $colour = get_term_meta( $parent->term_id, 'color', true );
$colour = ( $colour != '' ) ? $colour : 'transparent';
?>
<li><a href="<?php echo esc_url( get_term_link( $parent, $parent->taxonomy ) ); ?>"><?php echo get_term( $parent->term_id, 'company' )->name; ?></a></li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
</div>
<div id="children" class="col-6 col-m-12">
<?php
$children = apply_filters(
'taxonomy-images-get-terms',
'',
array(
'having_images' => false,
'taxonomy' => 'company',
'term_args' => array( 'parent' => get_queried_object()->term_id ),
)
);
if ( count( $children ) > 0 ) :
?>
<h2 class="subheading">Child<?php echo ( count( $children ) != 1 ) ? 'ren' : ''; ?></h2>
<ul class="index">
<?php
foreach ( (array) $children as $child ) :
$imgURL = wp_get_attachment_image_src( $child->image_id, 'detail' )[0];
$colour = get_term_meta( $child->term_id, 'color', true );
$colour = ( $colour != '' ) ? $colour : 'transparent';
?>
<li><a href="<?php echo esc_url( get_term_link( $child, $child->taxonomy ) ); ?>"><?php echo get_term( $child->term_id, 'company' )->name; ?></a></li>
<?php endforeach; ?>
</ul>
<?php else : ?>
<p>No children.</p>
<?php endif; ?>
</div>
</section>
<?php <?php
$pageOrder = array( 'post', 'website', 'program', 'writing', 'video', 'other'); $pageOrder = array( 'post', 'website', 'program', 'writing', 'video', 'other' );
foreach ($pageOrder as $currSec) { foreach ( $pageOrder as $currSec ) {
$args['post_type'] = array( $currSec ); $args['post_type'] = array( $currSec );
$i = 0; $i = 0;
$loop = new WP_Query( $args ); $loop = new WP_Query( $args );
if ( $loop->have_posts() ): if ( $loop->have_posts() ) :
echo '<section id="'.$currSec.'" class="org-items row">'; echo '<section id="' . $currSec . '" class="org-items row">';
echo '<h2 class="subheading">'.ucwords($currSec).'s <a href="/'.($currSec != "post" ? $currSec : "blog").'?company='.get_queried_object()->slug.'">View all '.$loop->post_count.'</a></h2>'; echo '<h2 class="subheading">' . ucwords( $currSec ) . 's <a href="/' . ( $currSec != 'post' ? $currSec : 'blog' ) . '?company=' . get_queried_object()->slug . '">View all ' . $loop->post_count . '</a></h2>';
echo '<div class="index">'; echo '<div class="index">';
while (($loop->have_posts()) && ($i++ < 4)) : $loop->the_post(); while ( ( $loop->have_posts() ) && ( $i++ < 4 ) ) :
get_template_part( 'template-parts/content', get_post_format() ); $loop->the_post();
endwhile; get_template_part( 'template-parts/content', get_post_format() );
echo '</div>'; endwhile;
echo '</section>'; echo '</div>';
endif; echo '</section>';
} endif;
echo '<section id="quals-and-awards">'; }
echo '<div id="qualifications" class="org-items row">'; echo '<section id="quals-and-awards">';
$args['post_type'] = 'qualification'; echo '<div id="qualifications" class="org-items row">';
$loop = new WP_Query( $args ); $args['post_type'] = 'qualification';
echo '<h2 class="subheading">Qualifications</h2>'; $loop = new WP_Query( $args );
if ( $loop->have_posts() ): echo '<h2 class="subheading">Qualifications</h2>';
echo '<ul class="index">'; if ( $loop->have_posts() ) :
while ($loop->have_posts()) : $loop->the_post(); echo '<ul class="index">';
$url = esc_url(get_permalink()); while ( $loop->have_posts() ) :
echo '<li><a href="'.$url.'">'.get_the_title().'</a></li>'; $loop->the_post();
endwhile; $url = esc_url( get_permalink() );
echo '</ul>'; echo '<li><a href="' . $url . '">' . get_the_title() . '</a></li>';
else: endwhile;
echo '<p>No qualifications.</p>'; echo '</ul>';
endif; else :
echo '</div>'; echo '<p>No qualifications.</p>';
endif;
echo '<div id="awards" class="org-items row">'; echo '</div>';
$args['post_type'] = 'award';
$loop = new WP_Query( $args ); echo '<div id="awards" class="org-items row">';
echo '<h2 class="subheading">Awards</h2>'; $args['post_type'] = 'award';
if ( $loop->have_posts() ): $loop = new WP_Query( $args );
echo '<ul class="index">'; echo '<h2 class="subheading">Awards</h2>';
while ($loop->have_posts()) : $loop->the_post(); if ( $loop->have_posts() ) :
$url = esc_url(get_permalink()); echo '<ul class="index">';
echo '<li><a href="'.$url.'">'.get_the_title().'</a></li>'; while ( $loop->have_posts() ) :
endwhile; $loop->the_post();
echo '</ul>'; $url = esc_url( get_permalink() );
else: echo '<li><a href="' . $url . '">' . get_the_title() . '</a></li>';
echo '<p>No awards.</p>'; endwhile;
endif; echo '</ul>';
echo '</div>'; else :
echo '</section>'; echo '<p>No awards.</p>';
endif;
$args['post_type'] = 'appearance'; echo '</div>';
$loop = new WP_Query( $args ); echo '</section>';
if ( $loop->have_posts() ):
echo '<section id="appearances" class="org-items row">'; $args['post_type'] = 'appearance';
echo '<h2 class="subheading">Appearances <a href="/appearance?company='.get_queried_object()->slug.'">View all '.$loop->post_count.'</a></h2>'; $loop = new WP_Query( $args );
echo '<div class="index">'; if ( $loop->have_posts() ) :
while (($loop->have_posts())) : $loop->the_post(); echo '<section id="appearances" class="org-items row">';
get_template_part( 'template-parts/content', get_post_format() ); echo '<h2 class="subheading">Appearances <a href="/appearance?company=' . get_queried_object()->slug . '">View all ' . $loop->post_count . '</a></h2>';
endwhile; echo '<div class="index">';
echo '</div>'; while ( ( $loop->have_posts() ) ) :
echo '</section>'; $loop->the_post();
endif; get_template_part( 'template-parts/content', get_post_format() );
endwhile;
$args['post_type'] = 'correspondence'; echo '</div>';
$loop = new WP_Query( $args ); echo '</section>';
if ( $loop->have_posts() ): endif;
echo '<section id="correspondence" class="org-items row">';
echo '<h2 class="subheading">Correspondence <a href="/correspondence?company='.get_queried_object()->slug.'">View all '.$loop->post_count.'</a></h2>'; $args['post_type'] = 'correspondence';
echo '<div class="index">'; $loop = new WP_Query( $args );
while (($loop->have_posts())) : $loop->the_post(); if ( $loop->have_posts() ) :
get_template_part( 'template-parts/content', get_post_format() ); echo '<section id="correspondence" class="org-items row">';
endwhile; echo '<h2 class="subheading">Correspondence <a href="/correspondence?company=' . get_queried_object()->slug . '">View all ' . $loop->post_count . '</a></h2>';
echo '</div>'; echo '<div class="index">';
echo '</section>'; while ( ( $loop->have_posts() ) ) :
endif; $loop->the_post();
?> get_template_part( 'template-parts/content', get_post_format() );
</main> endwhile;
echo '</div>';
echo '</section>';
endif;
?>
</main>
</div> </div>
</main> </main>

View File

@ -1,11 +1,11 @@
<?php <?php
/** /**
* The template part for displaying a message that posts cannot be found. * The template part for displaying a message that posts cannot be found.
* *
* @package WordPress * @package WordPress
* @subpackage Omphaloskepsis * @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
?> ?>
<section class="no-results not-found"> <section class="no-results not-found">

View File

@ -1,30 +1,30 @@
<?php <?php
/** /**
* The template used for displaying page content. * The template used for displaying page content.
* *
* @package WordPress * @package WordPress
* @subpackage Twenty_Sixteen * @subpackage Twenty_Sixteen
* @since Twenty Sixteen 1.0 * @since Twenty Sixteen 1.0
*/ */
?> ?>
<article id="wrapper" <?php post_class(); ?>> <article id="wrapper" <?php post_class(); ?>>
<header style="background-image: url('<?php the_post_thumbnail_url(); ?>');"> <header style="background-image: url('<?php the_post_thumbnail_url(); ?>');">
<div> <div>
<h1 id="post-title"><?php echo get_the_title(); ?></h1> <h1 id="post-title"><?php echo get_the_title(); ?></h1>
<?php if ($subtitle = get_post_meta(get_the_ID(), 'Subtitle', true)): ?> <?php if ( $subtitle = get_post_meta( get_the_ID(), 'Subtitle', true ) ) : ?>
<h2 id="post-subtitle"><?php echo $subtitle ?></h2> <h2 id="post-subtitle"><?php echo $subtitle; ?></h2>
<?php endif; ?> <?php endif; ?>
</div> </div>
</header><!-- .entry-header --> </header><!-- .entry-header -->
<main id="page-body" class="body"> <main id="page-body" class="body">
<?php <?php
if (get_the_content()): if ( get_the_content() ) :
the_content(); the_content();
else: else :
echo get_the_excerpt(); echo get_the_excerpt();
endif; endif;
?> ?>
</main><!-- .entry-content --> </main><!-- .entry-content -->
</article><!-- #post-## --> </article><!-- #post-## -->

View File

@ -1,93 +1,114 @@
<?php <?php
/** /**
* The template part for displaying single Posts. * The template part for displaying single Posts.
* *
* @package WordPress * @package WordPress
* @subpackage Omphaloskepsis * @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
?> ?>
<article id="wrapper" <?php post_class(); ?>> <article id="wrapper" <?php post_class(); ?>>
<header style="background-image: url('<?php the_post_thumbnail_url(); ?>');"> <header style="background-image: url('<?php the_post_thumbnail_url(); ?>');">
<div> <div>
<h1 id="post-title"><?php echo get_the_title(); ?></h1> <h1 id="post-title"><?php echo get_the_title(); ?></h1>
<?php if ($subtitle = get_post_meta(get_the_ID(), 'Subtitle', true)): ?> <?php if ( $subtitle = get_post_meta( get_the_ID(), 'Subtitle', true ) ) : ?>
<h2 id="post-subtitle"><?php echo $subtitle ?></h2> <h2 id="post-subtitle"><?php echo $subtitle; ?></h2>
<?php endif; ?> <?php endif; ?>
<?php //the_date('F j\<\s\u\p\>S\<\/\s\u\p\>, 1,Y \H\.\E\.', '<h3>', '</h3>'); ?> <?php // the_date('F j\<\s\u\p\>S\<\/\s\u\p\>, 1,Y \H\.\E\.', '<h3>', '</h3>'); ?>
</div> </div>
</header><!-- .entry-header --> </header><!-- .entry-header -->
<main id="post-body" class="body"> <main id="post-body" class="body">
<?php $date1 = strtotime(get_the_date('Y-m-d')); ?> <?php $date1 = strtotime( get_the_date( 'Y-m-d' ) ); ?>
<?php $date2 = strtotime(date('Y-m-d')); ?> <?php $date2 = strtotime( date( 'Y-m-d' ) ); ?>
<?php if (has_category('series') || has_tag('ohwhatohjeez') || get_post_meta(get_the_ID(), 'Note(s)', true) || get_post_meta(get_the_ID(), 'License', true) || ($date1 < $date2 - 31557600)): ?> <?php if ( has_category( 'series' ) || has_tag( 'ohwhatohjeez' ) || get_post_meta( get_the_ID(), 'Note(s)', true ) || get_post_meta( get_the_ID(), 'License', true ) || ( $date1 < $date2 - 31557600 ) ) : ?>
<div id="details"> <div id="details">
<ul> <ul>
<?php <?php
if (has_category('thoughts')) $type = "thought"; if ( has_category( 'thoughts' ) ) {
else if (has_category('reports')) $type = "report"; $type = 'thought';
else if (has_category('review')) $type = "review"; } else if ( has_category( 'reports' ) ) {
$type = 'report';
if (has_category('series')) { } else if ( has_category( 'review' ) ) {
$catag = "is a part of the following series"; $type = 'review';
$series = []; }
$s = get_category_by_slug('series');
$seriesIDs = get_term_children($s->term_id, 'category'); if ( has_category( 'series' ) ) {
$catag = 'is a part of the following series';
foreach ($seriesIDs as $thisSeriesID) { $series = array();
if (has_category($thisSeriesID)) { $s = get_category_by_slug( 'series' );
array_push($series, get_category($thisSeriesID)); $seriesIDs = get_term_children( $s->term_id, 'category' );
}
} foreach ( $seriesIDs as $thisSeriesID ) {
if (count($series) > 1) $catag .= "&rsquo;"; if ( has_category( $thisSeriesID ) ) {
$punct = ":"; array_push( $series, get_category( $thisSeriesID ) );
foreach ($series as $thisSeries) { }
$catag .= $punct.' '; }
if ($punct == ":") $punct = ";"; if ( count( $series ) > 1 ) {
$catag .= '<a href="/category/series/'.$thisSeries->slug.'">'.$thisSeries->name.'</a>'; $catag .= '&rsquo;';
} }
$catag .= '.'; $punct = ':';
foreach ( $series as $thisSeries ) {
echo "<li>This <a href='/category/{$type}s'>{$type}</a> {$catag}</li>"; $catag .= $punct . ' ';
} if ( $punct == ':' ) {
?> $punct = ';';
}
<?php if ($date1 < $date2 - 31557600): ?> $catag .= '<a href="/category/series/' . $thisSeries->slug . '">' . $thisSeries->name . '</a>';
<li>This piece was written over a year ago. It may no longer accurately reflect my views now, or may be factually outdated.</li> }
$catag .= '.';
echo "<li>This <a href='/category/{$type}s'>{$type}</a> {$catag}</li>";
}
?>
<?php if ( $date1 < $date2 - 31557600 ) : ?>
<li>This piece was written over a year ago. It may no longer accurately reflect my views now, or may be factually outdated.</li>
<?php endif; ?> <?php endif; ?>
<?php if (has_tag('ohwhatohjeez')): ?> <?php if ( has_tag( 'ohwhatohjeez' ) ) : ?>
<li>This piece was originally written for my old site, Oh What? Oh Jeez! As such, it may not have transferred over properly and some images and links might be broken (and, to a lesser extent, my writing from years ago is about 80% run-on sentences).</li> <li>This piece was originally written for my old site, Oh What? Oh Jeez! As such, it may not have transferred over properly and some images and links might be broken (and, to a lesser extent, my writing from years ago is about 80% run-on sentences).</li>
<?php endif; ?> <?php endif; ?>
<?php if ($notes = get_post_meta(get_the_ID(), 'Note(s)', true)): ?> <?php if ( $notes = get_post_meta( get_the_ID(), 'Note(s)', true ) ) : ?>
<li><?php echo $notes ?></li> <li><?php echo $notes; ?></li>
<?php endif; ?> <?php endif; ?>
<?php if ($license = get_post_meta(get_the_ID(), 'License', true)): ?> <?php if ( $license = get_post_meta( get_the_ID(), 'License', true ) ) : ?>
<li>This work is licensed under <?php echo $license ?>. <a href="https://bengoldsworthy.uk/2018/03/copywrong/">Sorry about that</a>.</li> <li>This work is licensed under <?php echo $license; ?>. <a href="/2018/03/copywrong/">Sorry about that</a>.</li>
<?php endif; ?> <?php endif; ?>
</ul> </ul>
</div> </div>
<?php endif; ?> <?php endif; ?>
<?php <?php
if (get_the_content()): if ( get_the_content() ) :
the_content(); the_content();
else: else :
echo get_the_excerpt(); echo get_the_excerpt();
endif; endif;
?> ?>
</main><!-- .entry-content --> </main><!-- .entry-content -->
<footer id="post-toc"> <footer id="post-meta">
<?php if ($content = get_post_meta(get_the_ID(), 'ToC1', true)): ?> <h1>Post Meta</h1>
<h1>Contents</h1> <?php if ( $content = get_post_meta( get_the_ID(), 'ToC1', true ) ) : ?>
<ol> <section id="post-contents">
<?php $i = 1; ?> <h2>Contents</h2>
<?php while($content = get_post_meta(get_the_ID(), 'ToC'.$i, true)): ?> <ol>
<li><a href="#section-<?php echo $i++ ?>"><?php echo $content ?></a></li> <?php $i = 1; ?>
<?php endwhile; ?> <?php while ( $content = get_post_meta( get_the_ID(), 'ToC' . $i, true ) ) : ?>
</ol> <li><a href="#section-<?php echo $i++; ?>"><?php echo $content; ?></a></li>
<?php endwhile; ?>
</ol>
</section>
<?php endif; ?>
<?php if ( $tags = get_the_tags( get_the_ID() ) ) : ?>
<section id="post-tags">
<h2>Tags</h2>
<?php foreach ( $tags as $tag ) : ?>
<a href="<?php echo get_tag_link( $tag->term_id ); ?>" title="<?php echo $tag->name; ?> Tag" class="tag-link">
<?php echo $tag->name; ?>
</a>
<?php endforeach; ?>
</section>
<?php endif; ?> <?php endif; ?>
</footer> </footer>
</article><!-- #post-## --> </article><!-- #post-## -->

View File

@ -1,25 +1,29 @@
<?php <?php
/** /**
* The template part for displaying content. * The template part for displaying content.
* *
* @package WordPress * @package WordPress
* @subpackage Omphaloskepsis * @subpackage Omphaloskepsis
* @since Omphaloskepsis 1.0 * @since Omphaloskepsis 1.0
*/ */
?> ?>
<a class="item" href="<?php echo ($link = get_post_meta(get_the_ID(), 'External_Link', true)) ? $link : get_the_permalink(); ?>" <?php echo ($link) ? 'target="_blank"' : ''; ?>> <a class="item" href="<?php echo ( $link = get_post_meta( get_the_ID(), 'External_Link', true ) ) ? $link : get_the_permalink(); ?>" <?php echo ( $link ) ? 'target="_blank"' : ''; ?>>
<article id="post-<?php the_ID(); ?>" class="tile col-m-6 col-4 col-w-3" style="background-image: url('<?php the_post_thumbnail_url(); ?>');"> <article id="post-<?php the_ID(); ?>" class="tile col-m-6 col-4 col-w-3" style="background-image: url('<?php the_post_thumbnail_url(); ?>');">
<?php <?php
if (strlen(get_the_title()) > 70) $small= "vsmall"; if ( strlen( get_the_title() ) > 70 ) {
elseif (strlen(get_the_title()) > 35) $small = "small"; $small = 'vsmall';
elseif (strlen(get_the_title()) > 12) $small = "qsmall"; } elseif ( strlen( get_the_title() ) > 35 ) {
?> $small = 'small';
<header> } elseif ( strlen( get_the_title() ) > 12 ) {
<h1 class="<?php echo $small ?> post-title"><?php echo get_the_title(); ?></h1> $small = 'qsmall';
<?php if ($subtitle = get_post_meta(get_the_ID(), 'Subtitle', true)): ?> }
<h2><?php echo $subtitle ?></h2> ?>
<?php endif; ?> <header>
</header> <h1 class="<?php echo $small; ?> post-title"><?php echo get_the_title(); ?></h1>
<?php if ( $subtitle = get_post_meta( get_the_ID(), 'Subtitle', true ) ) : ?>
<h2><?php echo $subtitle; ?></h2>
<?php endif; ?>
</header>
</article><!-- #post-## --> </article><!-- #post-## -->
</a> </a>

View File

@ -1,51 +1,54 @@
<?php <?php
/** /**
* The template for displaying all single posts and attachments * The template for displaying all single posts and attachments
* *
* @package WordPress * @package WordPress
* @subpackage Twenty_Sixteen * @subpackage Twenty_Sixteen
* @since Twenty Sixteen 1.0 * @since Twenty Sixteen 1.0
*/ */
get_header(); get_header();
?> ?>
<?php <?php
function withinDates($jSDate, $jEDate) function withinDates( $jSDate, $jEDate ) {
{ $endYear = date( 'Y' );
$endYear = date("Y"); $endDate = $endYear . '-12-31';
$endDate = $endYear . "-12-31"; $startDate = ( $endYear - 2 ) . '-01-01';
$startDate = ($endYear - 2) . "-01-01"; $jEDate = ( ! $jEDate ) ? date( 'Y-m-d' ) : ( ( $jEDate > $endDate ) ? $endDate : $jEDate );
$jEDate = (!$jEDate) ? date('Y-m-d') : (($jEDate > $endDate) ? $endDate : $jEDate); return ( ( ( strtotime( $jSDate ) < strtotime( $endDate ) ) && ( strtotime( $jSDate ) > strtotime( $startDate ) ) ) && ( strtotime( $jEDate ) > strtotime( $startDate ) ) );
return (((strtotime($jSDate) < strtotime($endDate)) && (strtotime($jSDate) > strtotime($startDate))) && (strtotime($jEDate) > strtotime($startDate))); }
} $args = array(
$args = array( 'post_type' => array(
'post_type' => array( 'job',
'job' ),
), 'posts_per_page' => -1,
'posts_per_page' => -1 );
); $loop = new WP_Query( $args );
$loop = new WP_Query($args); ?>
?>
<header class="post-header-title"> <header class="post-header-title">
<h1 id="page-title">Experience</h1> <h1 id="page-title">Experience</h1>
<h2 id="page-subtitle">or, a brief history of Ben</h2> <h2 id="page-subtitle">or, a brief history of Ben</h2>
<?php while (have_posts()): the_post(); ?> <?php
<div class="entry-content tile" id="taxonomy-description"> while ( have_posts() ) :
the_post();
?>
<div class="entry-content tile" id="taxonomy-description">
<?php the_content(); ?> <?php the_content(); ?>
</div> </div>
<?php endwhile; ?> <?php endwhile; ?>
</header> </header>
<div id="primary" class="content-area"> <div id="primary" class="content-area">
<main id="company-main" class="site-main" role="main"> <main id="company-main" class="site-main" role="main">
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript"> <script type="text/javascript">
jQuery(document).ready(function($) { jQuery(document).ready(function($) {
$('#timeline').height($(window).height() - $('.post-header-title').height() - 50); $('#timeline').height($(window).height() - $('.post-header-title').height() - 50);
}); });
google.charts.load('current', {'packages':['timeline']}); google.charts.load('current', {'packages':['timeline']});
google.charts.setOnLoadCallback(drawChart); google.charts.setOnLoadCallback(drawChart);
function drawChart() { function drawChart() {
var container = document.getElementById('timeline'); var container = document.getElementById('timeline');
var chart = new google.visualization.Timeline(container); var chart = new google.visualization.Timeline(container);
var dataTable = new google.visualization.DataTable(); var dataTable = new google.visualization.DataTable();
@ -57,41 +60,46 @@
dataTable.addColumn({ type: 'date', id: 'End' }); dataTable.addColumn({ type: 'date', id: 'End' });
dataTable.addRows([ dataTable.addRows([
<?php <?php
while ($loop->have_posts()): $loop->the_post(); while ( $loop->have_posts() ) :
?> $loop->the_post();
<?php ?>
$isCurrent = (get_post_meta(get_the_ID(), 'end-date', true)) ? false : true; <?php
$company = wp_get_object_terms(get_the_ID(), 'company', array( $isCurrent = ( get_post_meta( get_the_ID(), 'end-date', true ) ) ? false : true;
'fields' => 'names' $company = wp_get_object_terms(
)); get_the_ID(),
$title = html_entity_decode(get_the_title()); 'company',
array(
'fields' => 'names',
)
);
$title = html_entity_decode( get_the_title() );
$start = get_the_date(); $start = get_the_date();
$end = (!get_post_meta(get_the_ID(), 'end-date', true)) ? date('D M d Y H:i:s O') : get_post_meta(get_the_ID(), 'end-date', true); $end = ( ! get_post_meta( get_the_ID(), 'end-date', true ) ) ? date( 'D M d Y H:i:s O' ) : get_post_meta( get_the_ID(), 'end-date', true );
?> ?>
[ [
'<?php echo ($isCurrent) ? "Current" : "Current"; ?>', '<?php echo ( $isCurrent ) ? 'Current' : 'Current'; ?>',
'<?php echo $title . ', ' . html_entity_decode($company[0]); ?>', '<?php echo $title . ', ' . html_entity_decode( $company[0] ); ?>',
'<div style="padding: 20px"><h1><?php echo $title; ?></h1><h2><?php echo html_entity_decode($company[0]); ?></h2><ul><li><?php echo $start; ?>&mdash;<?php echo ($isCurrent) ? "present" : $end; ?></li></ul></div>', '<div style="padding: 20px"><h1><?php echo $title; ?></h1><h2><?php echo html_entity_decode( $company[0] ); ?></h2><ul><li><?php echo $start; ?>&mdash;<?php echo ( $isCurrent ) ? 'present' : $end; ?></li></ul></div>',
new Date('<?php echo $start; ?>'), new Date('<?php echo $start; ?>'),
new Date('<?php echo $end; ?>') new Date('<?php echo $end; ?>')
], ],
<?php endwhile; ?> <?php endwhile; ?>
]); ]);
var options = { var options = {
tooltip: {isHtml: true}, tooltip: {isHtml: true},
timeline: { timeline: {
showRowLabels: true, showRowLabels: true,
}, },
}; };
chart.draw(dataTable, options); chart.draw(dataTable, options);
} }
</script> </script>
<div id="slider-range"></div> <div id="slider-range"></div>
<div id="timeline"></div> <div id="timeline"></div>
</main> </main>
</div> </div>
<?php //get_sidebar(); ?> <?php // get_sidebar(); ?>
<?php get_footer(); ?> <?php get_footer(); ?>