Skip to content

Instantly share code, notes, and snippets.

@magnus7lab
magnus7lab / functions.php
Created October 23, 2016 18:29
remove Site Description Tagline in Genesis
// Remove the site description
remove_action( 'genesis_site_description', 'genesis_seo_site_description' );
@magnus7lab
magnus7lab / helloWorld.java
Created October 8, 2015 17:56
Java Basics
public class helloWorld {
public static void main(String[] args)
{
System.out.println("Hello, World!");
}
}