Skip to content

Instantly share code, notes, and snippets.

@renemorozowich
renemorozowich / functions.php
Last active May 25, 2019 21:17
Add a top menu to an Astra child theme
/**
* Add additional menu
*/
function register_additional_menus() {
register_nav_menu( 'top-menu', __( 'Top Menu' ) );
}
add_action( 'init', 'register_additional_menus' );
/**
* Add scripts to astra_header_before
@renemorozowich
renemorozowich / rene-get-posts-via-rest-api.php
Last active January 17, 2023 22:29
Gets the latest two posts from a blog via the REST API. Blog link, title and date included.
<?php
/**
* Plugin Name: Get Posts via REST API
* Description: Gets the latest two posts from a blog via the REST API. Blog link, title and date included.
* Plugin URI: https://renemorozowich.com
* Author: Rene Morozowich
* Version: 1.0
* Text Domain: getpostsviarestapi
* License: GPL v2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.txt
@renemorozowich
renemorozowich / functions.php
Last active March 28, 2019 00:14
Changing Columns on the Job Dashboard of WP Job Manager
<?php
// Customize columns in WP Job Manager [job_dashboard].
function custom_job_manager_job_dashboard_columns( $columns ) {
// Remove all columns.
unset( $columns['job_title'] );
unset( $columns['filled'] );
unset( $columns['date'] );
unset( $columns['expires'] );