Skip to content

Instantly share code, notes, and snippets.

View ywnb's full-sized avatar

やわなべ ywnb

View GitHub Profile
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<?php wp_head(); ?>
<?php get_ogp(); ?>
@ywnb
ywnb / 2541-1.php
Last active September 23, 2015 07:37
/*------------------------------------------------------
page description
-------------------------------------------------------*/
function get_description(){
global $post;
$desc = get_bloginfo('description');
if(is_single() or is_page()){
if(has_excerpt()){
$desc = get_the_excerpt();
}else{