Skip to content

Instantly share code, notes, and snippets.

@chikuwa24
chikuwa24 / get_uainfo.php
Last active October 6, 2019 10:56
Get access user's ua info and send mail
<?php
// 豆地雷 UA情報取得&メール通知
// URLパラメータ a=mail account d=mail domain
function get_uainfo(){
ini_set("display_errors", 0);
ini_set("display_startup_errors", 0);
error_reporting(E_ALL);
@chikuwa24
chikuwa24 / blogcard_for_wp.php
Last active July 19, 2022 23:21
Blogcard for Wordpress - PHP
<?php
//---------------------------------------//
// 外部&内部(wp)リンク対応ブログカード
// OpenGraph.phpを使用してます
//---------------------------------------//
// 端末がスマホの場合はtrueを返す
function is_mobile() {
$useragents = array(
'iPhone', // iPhone
@chikuwa24
chikuwa24 / blogcard_for_wp.css
Last active September 26, 2019 06:04
Blogcard for Wordpress - CSS
/* 外部&内部(wp)リンク対応ブログカード マテリアルデザイン風 */
.blogcard {
font-size: 14px;
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
line-height: 1.45em;
position: relative;
overflow: hidden;
height: 147px;
max-height: 160px;
margin: 0 auto 1.6%;