Skip to content

Instantly share code, notes, and snippets.

View richyrb00's full-sized avatar
💭
Are you sure you want to release that?

Richard Bilton richyrb00

💭
Are you sure you want to release that?
View GitHub Profile
@richyrb00
richyrb00 / Frame.html
Last active July 31, 2017 14:02
Dynamic Iframe Resizing ( No scroll will appear when the content of an Iframe changes the height. )
<html>
<head>
<title> Content inside an IFRAME </title>
</head>
<body>
<div>
<button id="btn" onclick="addParagraph()">Add Paragraph</button>
<p>I am content that will be inside an IFRAME</p>
</div>
@richyrb00
richyrb00 / page-home.php
Created October 4, 2016 00:15
8 item post loop layout in Wordpress
<?php
/*
Template Name: Homepage
*/
?>
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
@richyrb00
richyrb00 / wordpress-time-and-date.php
Created October 4, 2016 00:12
Displays time and date in Wordpress post loop
<p>Posted: <?php the_date(‘F j, Y’); ?> at <?php the_time(‘g:i a’); ?></p>
@richyrb00
richyrb00 / wordpress-date.php
Created October 3, 2016 23:57
Displaying date in a Wordpress post loop
<?php the_time('F j, Y'); ?>