Skip to content

Instantly share code, notes, and snippets.

@rolka
rolka / script.js
Created August 10, 2018 11:18 — forked from athlonUA/script.js
Google reCAPTCHA V2. Change language in real time
// Enum for language codes
var languageListsGoogleCaptchaEnum = {
Arabic: 'ar',
Afrikaans: 'af',
Amharic: 'am',
Armenian: 'hy',
Azerbaijani: 'az',
Basque: 'eu',
Bengali: 'bn',
Bulgarian: 'bg',
@rolka
rolka / functions.php
Created August 19, 2018 19:00 — forked from caralgar/functions.php
How to remove Category:, tag:, etc from the_archive_title()
<?php
add_filter( 'get_the_archive_title', function ($title) {
if ( is_category() ) {
$title = single_cat_title( '', false );
} elseif ( is_tag() ) {
$title = single_tag_title( '', false );
} elseif ( is_author() ) {
$title = '<span class="vcard">' . get_the_author() . '</span>' ;
}
return $title;
@rolka
rolka / vertical-text.css
Created September 26, 2018 19:48 — forked from obenjiro/vertical-text.css
CrossBrowser Vertical CSS Text
/**
* Works everywere ( IE7+, FF, Chrome, Safari, Opera )
* Example: http://jsbin.com/afAQAWA/2/
*/
.rotated-text {
display: inline-block;
overflow: hidden;
width: 1.5em;
}
.rotated-text__inner {