PHP code example of metabolism / wordpress-bundle
1. Go to this page and download the library: Download metabolism/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/ */
metabolism / wordpress-bundle example snippets
// src/Controller/BlogController.php
/**
* @param Post $post
* @param PostRepository $postRepository
* @return Response
*/
public function pageAction(Post $post, PostRepository $postRepository)
{
$context = [];
// get current post
$context['post'] = $post;
// find 10 "guide" ordered by title
$context['guides'] = $postRepository->findBy(['post_type'=>'guide'], ['title'=>'ASC'], 10);
return $this->render('page.html.twig', $context);
}
// config/bundles.php
return [
// ...
Metabolism\WordPressBundle\WordPressBundle::class => ['all' => true],
];