Skip to content

Instantly share code, notes, and snippets.

View sabotawsh's full-sized avatar

Natasha McDiarmid sabotawsh

View GitHub Profile
@susansilver
susansilver / Open-Graph-Tags-WordPress.php
Last active July 5, 2023 14:26
Open Graph Tags for WordPress
<!-- Twitter Cards -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@site_twitter_username" />
<meta name="twitter:creator" content="@author_twitter_username" />
<meta name="twitter:title" content="<?php echo get_the_title(); ?>" />
<meta name="twitter:description" content="<?php echo get_post_meta( get_the_ID(), 'desc', true);?>" />
<meta name="twitter:image" content="<?php echo get_the_post_thumbnail_url(); ?>" />
<!-- // Facebook -->
@baptistebriel
baptistebriel / admin.php
Last active August 26, 2022 10:14
[WordPress] - Collection of WordPress Snippets
<?php
// Show something only if the user is logged / admin.
// To be used in the current theme files - front.
if (current_user_can('manage_options')){ ?>
<div class="work">
<div class="work_layer">
<div class="device-content row">
<div class="work_content right">
<span class="f_13 uppercase sub_title">Web</span>
@awshout
awshout / foundation4-topbar-menu.php
Last active August 19, 2023 02:44
WordPress Menu & Walker for ZURB's Foundation 4 Top Bar
<?php
add_theme_support('menus');
/**
* Register Menus
* http://codex.wordpress.org/Function_Reference/register_nav_menus#Examples
*/
register_nav_menus(array(
'top-bar-l' => 'Left Top Bar', // registers the menu in the WordPress admin menu editor
'top-bar-r' => 'Right Top Bar'