Skip to content

📝 Get WordPress file header information in nodejs

Notifications You must be signed in to change notification settings

oknoorap/wp-get-file-header

Repository files navigation

WordPress Get File Header

Get WordPress file header information, more details see https://codex.wordpress.org/File_Header.

Installation

Using npm:
npm install wp-get-file-header

Using Yarn:
yarn add wp-get-file-header

Usage

Example codes below is run under nodejs at least with version 6.x.x installed

const wpFileHeader = require('wp-get-file-header')

// 1st example
wpFileHeader('/example/wordpress/wp-content/themes/mytheme/style.css')
  .then((info, arr) => {
    console.log(info.themeName)
    console.log(info.description)

    // Get origin info in Array
    console.log(arr)
  })

// 2nd Example
wpFileHeader('/example/wordpress/wp-content/themes/mytheme/page-templates/full-width.php')
  .then(page => {
    console.log(page.templateName)
  })

Related

License

MIT (c) oknoorap