Skip to content

Instantly share code, notes, and snippets.

View roykamsi's full-sized avatar
🧐
Web Dev Grinding

RoyKms roykamsi

🧐
Web Dev Grinding
View GitHub Profile
@brickbones
brickbones / tabs.html
Created August 6, 2020 18:26
Tabs with only HTML and CSS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<title>Tabs</title>
</head>
<body>
<div class="mytabs">
@tradesouthwest
tradesouthwest / wp-search-filter-ajax.php
Created January 7, 2018 20:32
wordpress filter for searching categories with ajax
<form action="<?php echo site_url() ?>/wp-admin/admin-ajax.php" method="POST" id="filter">
<?php
if( $terms = get_terms( 'category', 'orderby=name' ) ) :
echo '<select name="categoryfilter"><option>Select category...</option>';
foreach ( $terms as $term ) :
echo '<option value="' . $term->term_id . '">' . $term->name . '</option>';
endforeach;
echo '</select>';
endif;