https://github.com/j3-tech/wordpressapi
Wordpress.org API
https://github.com/j3-tech/wordpressapi
php wordpress wordpress-plugin
Last synced: 2 months ago
JSON representation
Wordpress.org API
- Host: GitHub
- URL: https://github.com/j3-tech/wordpressapi
- Owner: J3-Tech
- License: mit
- Created: 2015-11-12T10:58:06.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-04-27T07:15:01.000Z (about 3 years ago)
- Last Synced: 2025-03-31T07:24:16.853Z (over 1 year ago)
- Topics: php, wordpress, wordpress-plugin
- Language: PHP
- Homepage: http://labz.one/WordPressAPI/
- Size: 66.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WPApi
[](https://scrutinizer-ci.com/g/labzone/WPApi/?branch=master)
[](https://travis-ci.org/labzone/WPApi)
Wordpress.org API
## Examples
### Plugin
#### Search
```php
$response = WPApi\WPApi::plugin()->search('wordpress seo');
```
#### Slug
```php
$response = WPApi\WPApi::plugin()->slug('wordpress-seo');
```
### Theme
#### Search
```php
$response = WPApi\WPApi::theme()->search('simple');
```
#### Slug
```php
$response = WPApi\WPApi::theme()->slug('simpler');
```
#### Author
```php
$response = WPApi\WPApi::theme()->slug('fontethemes');
```