Skip to content

Instantly share code, notes, and snippets.

View nickcernis's full-sized avatar

Nick Cernis nickcernis

  • Innsbruck, Austria
  • 15:43 (UTC +02:00)
View GitHub Profile
@nickcernis
nickcernis / functions.php
Created February 18, 2020 19:40
Show the day in the heading on Genesis archives, even if an archive has no posts
<?php
remove_action( 'genesis_archive_title_descriptions', 'genesis_do_archive_headings_headline', 10, 3 );
add_action( 'genesis_archive_title_descriptions', 'custom_do_archive_headings_headline', 10, 3 );
/**
* Adapts archive title to display a date even for days in custom post types that have no posts.
*
* @param string $heading Optional. Archive heading, default is empty string.
* @param string $intro_text Optional. Archive intro text, default is empty string.
* @param string $context Optional. Archive context, default is empty string.
*/
@nickcernis
nickcernis / genesis-portfolio-pro-modifications.php
Last active October 22, 2019 22:10
Enable the block editor for Genesis Portfolio Pro
<?php
/*
Plugin Name: Genesis Portfolio Pro Modifications
Description: Enable the Block Editor for the Portfolio post type.
Version: 1.0.0
*/
add_filter( 'register_post_type_args', 'studiopress_enable_block_editor_portfolio', 10, 2 );
function studiopress_enable_block_editor_portfolio( $args, $post_type ) {
@nickcernis
nickcernis / functions.php
Last active October 14, 2019 15:55
Prevent 'NotAllowedError' and 'user didn't interact with the document first' errors for Vimeo embedded in WordPress. No longer needed in WP 5.3 beta 3 or higher.
add_action( 'wp_enqueue_scripts', 'studiopress_load_newer_vimeo_mediaelement', 100 );
/**
* Replace the mediaelement-vimeo script with a newer version.
*
* This works around an issue in WordPress core that can prevent playback of
* Vimeo videos embedded via the `wp_video_shortcode()` function.
*
* This is caused by WordPress loading an older version of the Vimeo script
* (currently loads 4.2.6), which does not add the 'allow=autoplay'
* attribute to iframes that Chrome now requires to permit video playback as
@nickcernis
nickcernis / onboarding.php
Created August 7, 2019 06:45
Importing different widgets during Genesis one-click theme setup
<?php
/**
* Genesis Sample.
*
* Onboarding config to load plugins and homepage content on theme activation.
*
* @package Genesis Sample
* @author StudioPress
* @license GPL-2.0-or-later
* @link https://www.studiopress.com/
@nickcernis
nickcernis / functions.php
Last active April 23, 2019 07:21
Link Genesis post title directly to content when using the Link post format
add_filter( 'genesis_post_title_output', 'sp_link_post_format_title' );
/**
* If the post uses the “Link” post format and has a URL in the content,
* link the title directly to that URL instead of to the post itself.
*
* @param string $title_html The original title HTML.
* @return string The updated HTML.
*/
function sp_link_post_format_title( $title_html ) {
if ( get_post_format() !== 'link' ) {
@nickcernis
nickcernis / functions.php
Created January 16, 2019 11:11
Wrap Custom HTML WordPress blocks in a div wrapper
<?php
add_filter( 'render_block', 'custom_wrap_html_block_output', 10, 2 );
/**
* Wrap output of HTML blocks.
*
* @param string $block_content Original block content.
* @param array $block Block info.
* @return string The block content with a wrapper.
*/
@nickcernis
nickcernis / functions.php
Created February 8, 2019 10:36
Exclude Genesis Portfolio taxonomies on the portfolio archive
<?php // omit this line from functions.php
add_filter( 'pre_get_posts', 'custom_remove_portfolio_taxonomy' );
function custom_remove_portfolio_taxonomy( $query ) {
if ( is_post_type_archive( 'portfolio' ) && $query->is_main_query() ) {
$tax_query = array(
array(
'taxonomy' => 'portfolio-type',
'field' => 'slug',
'terms' => array( 'type1', 'type2' ), // Change this to use the portfolio taxonomies you want to exclude.
@nickcernis
nickcernis / fish_path.txt
Created February 5, 2019 18:37
Add to fish shell PATH
set fish_user_paths $fish_user_paths my_path
From https://github.com/fish-shell/fish-shell/issues/527#issuecomment-32237807.
@nickcernis
nickcernis / genesis.php
Created October 4, 2018 10:40
noindex paginated homepage for Genesis / Yoast
<?php
add_filter( 'genesis_get_robots_meta_content', 'sp_noindex_paginated_front_page' );
/**
* No-index paginated front-page if Genesis SEO is in use.
*
* @param array $directives The robots directives.
* @return array The directives with noindex set if on a paginated front page.
*/
function sp_noindex_paginated_front_page( $directives ) {
if ( is_front_page() && is_paged() ) {
@nickcernis
nickcernis / functions.php
Last active September 30, 2018 16:56
Remove Genesis custom layout metabox on pages with a set template
<?php
/* Remove Genesis post layouts metabox if template matches 'custom-layout.php'*/
add_action( 'admin_menu', 'custom_remove_custom_layouts' );
function custom_remove_custom_layouts() {
$template_file = get_post_meta( $_GET['post'], '_wp_page_template', true );
if ( $template_file == 'custom-layout.php' ) {
remove_action( 'admin_menu', 'genesis_add_inpost_layout_box' );
}