https://github.com/samjuk/wp-theme-fishpig
Composer Packaged Fishpig Wordpress Theme For Magento 2
https://github.com/samjuk/wp-theme-fishpig
fishpig magento magento2 wordpress wordpress-theme
Last synced: 26 days ago
JSON representation
Composer Packaged Fishpig Wordpress Theme For Magento 2
- Host: GitHub
- URL: https://github.com/samjuk/wp-theme-fishpig
- Owner: SamJUK
- Created: 2025-01-16T13:44:10.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-11-19T05:38:11.000Z (7 months ago)
- Last Synced: 2025-11-19T06:20:54.764Z (7 months ago)
- Topics: fishpig, magento, magento2, wordpress, wordpress-theme
- Homepage: https://packagist.org/packages/samjuk/wp-theme-fishpig
- Size: 128 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SamJUK/wp-theme-fishpig
[](https://github.com/SamJUK/wp-theme-fishpig)
[](https://github.com/SamJUK/wp-theme-fishpig/releases)
[](https://github.com/SamJUK/wp-theme-fishpig/actions/workflows/watcher.yml)
The purpose of this repository is to build the [FishPig wordpress](https://github.com/bentideswell/magento2-wordpress-integration) theme from source. Generate a composer manifest and publish the package to Packagist.
Allowing for the Fishpig theme to be integrated as a dependency when managing Wordpress by Composer.
## Usage
The packages are available on Packagist. Make sure to specific the same version tag, as your Fishpig M2 module.
Pinning the theme version, as well as the Magento module is recommended for compatibility.
```sh
composer require samjuk/wp-theme-fishpig:3.31.9
```
## Versioning
This theme package tracks the upstream Magento 2 module versions 1 to 1. To help simplify, which version your need to install.
This means some releases, will have no changes over previous versions. The releases have a `update.flag` file is a hash for the theme content, which will indicate if the content has changed between versions. (This hash is also included in the commit message).
You can compare changes between the tagged versions, either by CLI, or via the Github Website.
### Github
When viewing the diff on Github, make sure to use the [double period comparative method](https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-comparing-branches-in-pull-requests#three-dot-and-two-dot-git-diff-comparisons). The URL format is:
```
https://github.com/SamJUK/wp-theme-fishpig/compare/$OLD_VERSION..$NEW_VERSION
```
For Example, to compare 3.0.1 against the 3.1.1 release.
[https://github.com/SamJUK/wp-theme-fishpig/compare/3.0.1..3.1.1](https://github.com/SamJUK/wp-theme-fishpig/compare/3.0.1..3.1.1)
### Git CLI
```sh
git init
git remote add origin git@github.com:SamJUK/wp-theme-fishpig.git
git fetch origin tag 3.0.1 3.1.1 --no-tags
git fetch origin tag 3.1.1 --no-tags
git diff 3.0.1 3.1.1
```