1. Go to this page and download the library: Download dreimus/wordpress-bundle library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
//BlogController.php
public function articleAction(Context $context)
{
$article = $context->addPost(12, 'article');
return $this->render( 'page/article.twig', $context->toArray() );
}
namespace App\Entity;
use Metabolism\WordpressBundle\Entity\Post;
use Metabolism\WordpressBundle\Entity\Image;
class Guide extends Post
{
public function __construct($id = null)
{
parent::__construct($id);
if( isset($this->picto) && $this->picto instanceof Image)
$this->picto = $this->picto->getFileContent();
}
}