Skip to content

Instantly share code, notes, and snippets.

View az1979's full-sized avatar

Kazuki Azumi az1979

View GitHub Profile
@az1979
az1979 / wordpress-modal-window.js
Last active January 25, 2018 11:36
WordPressの画像をモーダルウィンドウで表示しよう! - JavaScript
jQuery(document).ready(function() {
jQuery('.entry-content a[href$=".png"],a[href$=".gif"],a[href$=".jpg"],a[href$=".jpeg"]').has('img').magnificPopup({
type:'image',
closeOnContentClick: true,
showCloseBtn: false,
image: {
verticalFit: false
}
});
});
@az1979
az1979 / wordpress-modal-window.html
Created January 25, 2018 09:09
WordPressの画像をモーダルウィンドウで表示しよう! - HTML
<link href="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/magnific-popup.min.css" rel="stylesheet" type="text/css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/magnific-popup.js/1.1.0/jquery.magnific-popup.min.js"></script>
@az1979
az1979 / wpp-plus-widget-new.css
Last active January 25, 2018 09:08
WPP Plus Widget 新着記事の設定 - スタイルシート
.wpp-list-category-new {
list-style: none;
line-height: 0;
}
.wpp-list-category-new li {
border-bottom: none !important;
margin: 0 !important;
padding: 10px 0 10px !important;
}
.wpp-list-category-new-box {
@az1979
az1979 / wpp-plus-widget-new-2.html
Created January 24, 2018 06:46
WPP Plus Widget 新着記事の設定 - 記事フォーマット
<li>
<div class="wpp-list-category-new-box">
<div class="wpp-list-category-new-img">{thumb}</div>
<div class="wpp-list-category-new-text-box">
<div class="wpp-list-category-new-title">{title}</div>
<div class="wpp-list-category-new-category">[{category}]</div>
</div>
</div>
</li>
@az1979
az1979 / wpp-plus-widget-new-1.html
Created January 24, 2018 06:45
WPP Plus Widget 新着記事の設定 - 記事一覧の前後
<ul class="wpp-list-category-new">
@az1979
az1979 / wpp-plus-widget-popular-web-font.html
Created January 23, 2018 06:18
WPP Plus Widget 人気記事ランキングの設定 - Webフォント
@az1979
az1979 / wpp-plus-widget-popular.css
Created January 23, 2018 05:27
WPP Plus Widget 人気記事ランキングの設定 - スタイルシート
@az1979
az1979 / wpp-plus-widget-popular-2.html
Last active January 22, 2018 12:05
WPP Plus Widget 人気記事ランキングの設定 - 記事フォーマット
@az1979
az1979 / wpp-plus-widget-popular-1.html
Last active January 22, 2018 12:05
WPP Plus Widget 人気記事ランキングの設定 - 記事一覧の前後
@az1979
az1979 / ogp.html
Created January 19, 2018 09:55
OGPのサンプル
/* Facebook */
<meta property="og:image" content="https://gameusers.org/dev/blog/wp-content/uploads/2018/01/ec-wordpress-e-source-code.jpg" />
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
/* Twitter */
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@gameusersorg" />
<meta name="twitter:domain" content="gameusers.org" />
<meta name="twitter:image" content="https://gameusers.org/dev/blog/wp-content/uploads/2018/01/ec-wordpress-e-source-code.jpg" />