TODO: Add price informations
TODO: Add App Store Addresses
###Chrome
One browser for your computer, phone and tablet
<template> | |
<div id="app"> | |
<h1>App Vue File</h1> | |
<button type="button" name="button" | |
v-on:click="changeState"> | |
Change State</button> | |
<ul class="post__list"> | |
<post v-for="post in sharedState.posts" | |
:post="post"> |
WP REST API: Internals and Customization | |
http://code.tutsplus.com/tutorials/wp-rest-api-internals-and-customization--cms-24945 | |
Submit WordPress Posts from the Front-End with the WP-API | |
https://apppresser.com/wp-api-post-submission/ | |
Demo plugin using wp.Backbone.View and the WP JSON REST API v2 | |
https://github.com/brianhogg/wp-backbone-view-rest-api-demo | |
A Swift iOS application that demonstrates using WordPress API |
TODO: Add price informations
TODO: Add App Store Addresses
###Chrome
One browser for your computer, phone and tablet
/* | |
Gulpfile.js file for the tutorial: | |
Using Gulp, SASS and Browser-Sync for your front end web development - DESIGNfromWITHIN | |
http://designfromwithin.com/blog/gulp-sass-browser-sync-front-end-dev | |
Steps: | |
1. Install gulp globally: | |
npm install --global gulp |
<?php | |
/** | |
* Skeletal sample shortcode | |
*/ | |
add_shortcode( 'pilau-sample', 'pilau_sample_shortcode' ); | |
function pilau_sample_shortcode( $atts ) { | |
extract( shortcode_atts( array( | |
'text' => '' | |
), $atts ) ); |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |