All Projects → wp-pot → Gulp Wp Pot

wp-pot / Gulp Wp Pot

Licence: mit
Gulp plugin to generate pot file for WordPress plugins and themes

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Gulp Wp Pot

Wp Cli
⚙️ WP-CLI framework
Stars: ✭ 4,474 (+6577.61%)
Mutual labels:  hacktoberfest, wordpress
Wordpress Starter
📦 A starter template for WordPress websites
Stars: ✭ 26 (-61.19%)
Mutual labels:  gulp, wordpress
Coblocks
A suite of professional page building content blocks for the WordPress Gutenberg block editor.
Stars: ✭ 486 (+625.37%)
Mutual labels:  hacktoberfest, wordpress
Wordpress Plugin Boilerplate Powered
Wordpress Plugin Boilerplate but Powered with examples and a generator!
Stars: ✭ 413 (+516.42%)
Mutual labels:  hacktoberfest, wordpress
Generator Dhboilerplate
Boilerplate made by David Hellmann
Stars: ✭ 54 (-19.4%)
Mutual labels:  gulp, wordpress
Magento2 Frontools
Set of front-end tools for Magento 2 based on Gulp.js
Stars: ✭ 416 (+520.9%)
Mutual labels:  gulp, hacktoberfest
Easy Digital Downloads
Sell digital downloads through WordPress
Stars: ✭ 757 (+1029.85%)
Mutual labels:  hacktoberfest, wordpress
B4st
A Bootstrap 4 Starter Theme, for WordPress
Stars: ✭ 318 (+374.63%)
Mutual labels:  gulp, wordpress
Blog Post Workflow
Show your latest blog posts from any sources or StackOverflow activity or Youtube Videos on your GitHub profile/project readme automatically using the RSS feed
Stars: ✭ 910 (+1258.21%)
Mutual labels:  hacktoberfest, wordpress
Woocommerce
An open source eCommerce plugin for WordPress.
Stars: ✭ 7,473 (+11053.73%)
Mutual labels:  hacktoberfest, wordpress
Wp Graphql Acf
WPGraphQL for Advanced Custom Fields
Stars: ✭ 358 (+434.33%)
Mutual labels:  hacktoberfest, wordpress
Wordpress Docker Compose
Easy Wordpress development with Docker and Docker Compose
Stars: ✭ 1,107 (+1552.24%)
Mutual labels:  hacktoberfest, wordpress
Stream
🗄️ Stream plugin for WordPress
Stars: ✭ 335 (+400%)
Mutual labels:  hacktoberfest, wordpress
Wordpresscan
WPScan rewritten in Python + some WPSeku ideas
Stars: ✭ 456 (+580.6%)
Mutual labels:  hacktoberfest, wordpress
Awps
A Modern WordPress Starter Theme for savvy Developers
Stars: ✭ 319 (+376.12%)
Mutual labels:  gulp, wordpress
Wordpress Gulp Starter Kit
[NOT MAINTAINED] A starter kit for developing WordPress themes with Gulp.
Stars: ✭ 674 (+905.97%)
Mutual labels:  gulp, wordpress
Gatsby Woocommerce Themes
⚡ A Gatsby Theme for WooCommerce E-commerce site Gatsby WooCommerce WordPress
Stars: ✭ 306 (+356.72%)
Mutual labels:  hacktoberfest, wordpress
Corcel
Use WordPress backend with Laravel or any PHP application
Stars: ✭ 3,504 (+5129.85%)
Mutual labels:  hacktoberfest, wordpress
Hoverboard
Conference website template
Stars: ✭ 935 (+1295.52%)
Mutual labels:  gulp, hacktoberfest
Genesis Starter Theme
This repo is no longer maintained. The starter theme can now be found at:
Stars: ✭ 57 (-14.93%)
Mutual labels:  gulp, wordpress

gulp-wp-pot

Information

npm version GitHub Workflow Status Scrutinizer Code Quality Code Coverage

Package gulp-wp-pot
Description Gulp wrapper for wp-pot. Generates pot files for WordPress plugins and themes.

Like my work and want to say thanks?

Do it here:
Buy Me A Coffee

Install

$ npm install --save-dev gulp-wp-pot

Example usage with Gulp

var gulp = require('gulp');
var wpPot = require('gulp-wp-pot');

gulp.task('default', function () {
    return gulp.src('src/*.php')
        .pipe(wpPot( {
            domain: 'domain',
            package: 'Example project'
        } ))
        .pipe(gulp.dest('file.pot'));
});

wpPot({options})

See available options in the wp-pot readme, https://github.com/wp-pot/wp-pot#options
All options except src and writeFile is passed to wp-pot.

Related

License

MIT © Rasmus Bengtsson | Initial work by Willy Bahuaud

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].