Skip to content

Instantly share code, notes, and snippets.

View finleyjchen's full-sized avatar

Finley Chen finleyjchen

View GitHub Profile
@finleyjchen
finleyjchen / tinymce-headers.js
Last active April 26, 2022 13:46
TinyMCE WordPress listbox dropdown class selector
const UI_NAME = 'Default Size';
const HEADING_VALUES = [
{ text: UI_NAME, value: '' },
{ text: 'H1 Size', value: 'h1' },
{ text: 'H2 Size', value: 'h2' },
{ text: 'H3 Size', value: 'h3' },
{ text: 'H4 Size', value: 'h4' },
{ text: 'H5 Size', value: 'h5' },
{ text: 'H6 Size', value: 'h6' },
];
@finleyjchen
finleyjchen / .htaccess
Last active October 17, 2018 18:16
Redirect website from www to nonwww
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]
@finleyjchen
finleyjchen / top-banner.php
Created October 15, 2018 20:30
WordPress banner to display when logged in/logged out
<?php
function topbanner() {
if (!is_user_logged_in()) {
?>
<h3 class="text-center signup">
<a href="/my-account/"><strong>Sign Up</strong></a> for 10% Off Your First Order!
</h3>
@finleyjchen
finleyjchen / auth-links.php
Created August 31, 2018 19:40
Dynamic Sign In/Sign Out Link for WordPress Menus