Skip to content

Instantly share code, notes, and snippets.

View ciccarone's full-sized avatar
:octocat:

Tony Ciccarone ciccarone

:octocat:
View GitHub Profile
// Smooth Scroll Anchors
$('a[href*="#"]:not([href="#"])').click(function() {
if (location.pathname.replace(/^\//,'') === this.pathname.replace(/^\//,'') && location.hostname === this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
if (target.length) {
$('html, body').animate({
scrollTop: target.offset().top
}, 1000);
return false;
jQuery(document).ready(function( $ ) {
var linetypes = new Array();
var items = new Array();
var subitems = new Array();
$('.specs tr').each(function() {
if(linetypes.indexOf($(this).data('linetype')) === -1){
linetypes.push($(this).data('linetype'));
}
if(items.indexOf($(this).data('item')) === -1){
.logo-items {
display: grid;
text-align: center;
grid-template-columns: 1fr 1fr 1fr;
align-items: center;
}
display: grid;
text-align: center;
grid-template-columns: 1fr 1fr 1fr;
@ciccarone
ciccarone / wp-adv-admin-handbook.md
Created May 10, 2025 19:58 — forked from kasparsd/readme.md
WordPress handbooks as a single markdown file for LLMs (source https://developer.wordpress.org)

Advanced Administration Handbook

Source: https://developer.wordpress.org/advanced-administration/

Welcome to the WordPress Advanced Administration Handbook! Here you will find WordPress advanced documentation. Use the “Contents” menu on the left to navigate topics.

Why Advanced Administration?

Not all users who use WordPress have to know about technology, and therefore in its documentation should not appear either, and developers do not have to know certain advanced system configurations.