This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
pkg: grunt.file.readJSON('package.json'), | |
dir: { | |
bin:'dev', //→開発テーマ=作業フォルダ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(function(){ | |
$.ajax({ | |
type : 'GET', | |
url : 'https://api.flickr.com/services/rest/', | |
data : { | |
method : 'flickr.photosets.getPhotos', // (Required)This method does not require authentication. | |
api_key : 'xxxxxxxxxxxxxxxxxxxxxxx', // (Required)Your API application key. See here for more details. | |
photoset_id : 'xxxxxxxxxxxxxxxxxxxxxxx', // (Required)The id of the photoset to return the photos for. | |
extras : 'url_sq', // A comma-delimited list of extra information to fetch for each returned record. Currently supported fields are: license, date_upload, date_taken, owner_name, icon_server, original_format, last_update, geo, tags, machine_tags, o_dims, views, media, path_alias, url_sq, url_t, url_s, url_m, url_o |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function jetpack_mail_init() { | |
add_post_type_support( 'post', 'publicize' ); | |
} | |
add_action('init', 'jetpack_mail_init'); |