এই মডিউল টি অ্যাপ্লিকেশনের ইউনিট টেস্ট লেখার জন্য ইউজ করা হয়। এটিকে অ্যাকসেস করা হয়:
require('assert')
Buffer:
const el = wp.element.createElement, | |
registerBlockType = wp.blocks.registerBlockType, | |
InnerBlocks = wp.blocks.InnerBlocks; | |
registerBlockType( 'gutenberg-boilerplate-es5/hello-world-step-01', { | |
title: 'Hello World (Step 1)', | |
icon: 'universal-access-alt', | |
category: 'layout', |
`class Custom_Pages_Widgets extends WP_Widget{ | |
public function __construct(){ | |
$widget_ops = array( | |
'description' => __( "A list of your site’s Pages." ) | |
); | |
parent::__construct( 'custom_widget_pages', __( 'Widget Pages' ), $widget_ops ); | |
} | |
public function widget( $args, $instance ){ | |
extract($args); | |
$select = empty( $instance['select'] ) ? '' : $instance['select']; |
<!doctype html> | |
<html ng-app> | |
<head> | |
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.6/angular.min.js"></script> | |
<script src="http://www.parsecdn.com/js/parse-1.2.7.min.js"></script> | |
<script src="todo.js"></script> | |
<link href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet"> | |
</head> | |
<body> | |
<div class="container" ng-controller="Todo"> |
Follow these steps that in the link | |
http://www.macworld.co.uk/how-to/mac/make-bootable-mac-os-x-1010-yosemite-install-drive-3575875/ |
To remove a submodule you need to:
##Create an alias to MAMP's PHP installation
To do this, we can simply create an alias for our bash profile. We'll be doing this is nano, though you can do it in vim or a number of other editors as well.
Within the terminal, run:
nano ~/.bash_profile
This will open nano with the contents, at the top in a blank line add the following line: