Skip to content

Instantly share code, notes, and snippets.

@Nelsontuffs
Nelsontuffs / gp-updated-date.php
Created September 26, 2019 12:07 — forked from brianleejackson/gp-updated-date.php
Display the Date a Post Was Updated in the GeneratePress Theme (version 2) as seen on https://woorkup.com
if ( ! function_exists( 'generate_posted_on' ) ) :
/**
* Prints HTML with meta information for the current post-date/time and author.
*/
function generate_posted_on()
{
$date = apply_filters( 'generate_post_date', true );
$author = apply_filters( 'generate_post_author', true );
//if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) )
$time_string .= '<time class="updated" datetime="%3$s" itemprop="dateModified">%4$s</time>';
@Nelsontuffs
Nelsontuffs / generatepress-wordsmith.css
Created July 21, 2019 00:13
GeneratePress Wordsmith Site CSS
/* ===============================
SITE HEADER
=============================== */
/* hide topbar on mobile */
@media (max-width: 768px) {
.top-bar {
display: none;
}
}
@Nelsontuffs
Nelsontuffs / activity_main.xml
Created June 17, 2018 15:59 — forked from anonymous/activity_main.xml
RelativeLayout XML for Udacity quiz question
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp">
<TextView
android:text="I’m in this corner"
android:layout_height="wrap_content"
android:layout_width="wrap_content"