All Projects β†’ ryelle β†’ Foxhound

ryelle / Foxhound

A text-focused blog theme for WordPress (in React)

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Foxhound

Wp Webpack Script
πŸ’₯πŸ”₯πŸ“¦πŸ‘©β€πŸ’» An easy to use, pre configured, hackable webpack setup & development server for WordPress themes and plugins.
Stars: ✭ 314 (-10.29%)
Mutual labels:  wordpress
Stackedit
In-browser Markdown editor
Stars: ✭ 18,744 (+5255.43%)
Mutual labels:  wordpress
Wordpress Importer
In-development rewrite of the WordPress (WXR) Importer
Stars: ✭ 342 (-2.29%)
Mutual labels:  wordpress
Woocommerce Pos
πŸͺ A simple front-end for taking WooCommerce orders at the Point of Sale.
Stars: ✭ 318 (-9.14%)
Mutual labels:  wordpress
Posttypes
Simple WordPress custom post types.
Stars: ✭ 323 (-7.71%)
Mutual labels:  wordpress
Aliyun Oss Support
εŸΊδΊŽι˜Ώι‡ŒδΊ‘OSSηš„WordPressθΏœη¨‹ι™„δ»Άζ”―ζŒζ’δ»Ά
Stars: ✭ 330 (-5.71%)
Mutual labels:  wordpress
Wordpress Xmlrpc Brute Force Exploit
Wordpress XMLRPC System Multicall Brute Force Exploit (0day) by 1N3 @ CrowdShield
Stars: ✭ 315 (-10%)
Mutual labels:  wordpress
Controller
Composer package to enable a controller when using Blade with Sage 9
Stars: ✭ 345 (-1.43%)
Mutual labels:  wordpress
Cmb2 Snippet Library
CMB2 Code Snippet Library
Stars: ✭ 323 (-7.71%)
Mutual labels:  wordpress
Ludicrousdb
LudicrousDB is an advanced database interface for WordPress that supports replication, failover, load balancing, & partitioning
Stars: ✭ 336 (-4%)
Mutual labels:  wordpress
Uix Kit
A free UI toolkit based on some common libraries for building beautiful responsive website, compatible with Bootstrap v4.
Stars: ✭ 318 (-9.14%)
Mutual labels:  wordpress
Awps
A Modern WordPress Starter Theme for savvy Developers
Stars: ✭ 319 (-8.86%)
Mutual labels:  wordpress
Wordpress Nginx
WordPress specific Nginx configuration templates and best practices!
Stars: ✭ 332 (-5.14%)
Mutual labels:  wordpress
B4st
A Bootstrap 4 Starter Theme, for WordPress
Stars: ✭ 318 (-9.14%)
Mutual labels:  wordpress
Sensei
Sensei LMS WordPress Plugin
Stars: ✭ 340 (-2.86%)
Mutual labels:  wordpress
Vuefront
VueFront Core. Turn your old-fashioned CMS website in to a SPA & PWA in 5 minutes
Stars: ✭ 316 (-9.71%)
Mutual labels:  wordpress
The Seo Framework
The SEO Framework WordPress plugin.
Stars: ✭ 329 (-6%)
Mutual labels:  wordpress
Wpemerge
A modern, MVC-powered WordPress as a CMS workflow. πŸš€
Stars: ✭ 348 (-0.57%)
Mutual labels:  wordpress
Woo Next
πŸš€ React WooCommerce theme, built with Next JS, Webpack, Babel, Node, Express, using GraphQL and Apollo Client
Stars: ✭ 342 (-2.29%)
Mutual labels:  wordpress
Stream
πŸ—„οΈ Stream plugin for WordPress
Stars: ✭ 335 (-4.29%)
Mutual labels:  wordpress

Foxhound CircleCI

A react-based theme for WordPress.

screenshot

Setup

Since this is a more "experimental" theme, you'll need to have a few things set up before it'll work.

  1. WordPress 4.7 or higher, which includes the REST API content endpoints.
  2. You'll also need this WP-API Menus plugin. The REST API doesn't provide an endpoint for menus, so another plugin is necessary.
  3. Your permalinks will need to be set to /%year%/%monthnum%/%postname%/. Single-post/page views will not work without permalinks set. Category & tag archives bases should be set to category and tag, respectively.

Technical Requirements

  1. WordPress 4.7+
  2. PHP 5.4+
  3. If building locally, Node 8.9.1 + npm 5.5.1

Display & Features

This theme supports your average blogging site. It looks best with "Front page displays" set to latest posts (in Settings > Reading), however it does support a static page & blog posts on another page. This theme works best for very text-focused sites. It will display featured images on single posts & pages, but not on archive/list views. There is currently no special handling for post formats.

Restrictions

This theme does have a few "restrictions", things that don't work like they do in other WordPress themes.

The theme does not display anything if javascript is disabled. This should not affect your SEO, as google will crawl your page with JS & CSS enabled. This should not affect accessibility (99% of screen reader users have javascript enabled, in 2012). However, if your site needs to be usable without javascript, a javascript theme is not your best choice πŸ˜‰

The API cannot be blocked by a security plugin. Some plugins recommend blocking the users endpoint, but that is required to show the author archive. If you need to block the user endpoint, the rest of the theme should work, but might be unstable if anyone tries to visit an author archive.

Permalinks for pages and archives are changed by this theme. They'll be reset if/when you deactivate the theme. You might want to set up redirects using something like Safe Redirect Manager.

This theme does not support hierarchical category archives - only parent category archive pages can be displayed. This may be fixed in a later version of the theme (see #30).

Plugins might not work as expected, especially if they add content to the front end of your site. Most Jetpack features do still work.

If you're logged in to your site, the admin bar will currently not update when you navigate pages, so the "Edit X" link will only reflect the page you initially loaded. You can force-reload the page to update the admin bar, as a work-around.

Thanks to…

These are a few of the packages/plugins that made this theme possible.

Development

You can also install Foxhound yourself from this repo, by building it yourself. Download or clone this repo into your /themes folder, then run npm to install and build the javascript & CSS files. The process will look like this

git clone https://github.com/ryelle/Foxhound foxhound
cd foxhound
npm install
npm run build

Now you'll see a build/app.js file in the theme, and it will be available for you to switch to in wp-admin. If you're having trouble getting the theme active, please file an issue & I'll help you out.

If you don't have npm installed, you can find instructions on the npm website.

There are a few other NPM scripts you can run:

npm run dev runs webpack, with configuration enabling source maps. Eventually build will also compress/uglify built files, so this would skip that too (but that's currently disabled).

npm run watch runs webpack --watch, everything the previous command but it will also watch the source files for changes and recompile automatically. Best to run while developing. This does not live reload.

npm run lint runs eslint over all the javascript files. Webpack does this as well, before compiling, but only notifies you of errors. This command will catch warnings too.

On the PHP side, we're also adding in some prefixes for permalinks (also called routes).

Support

If you notice anything broken (that isn't mentioned in the "restrictions" section), let me know by creating an issue.

Thanks for checking out Foxhound!

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].