Download the PHP package startplatz/wordpress-integration-bundle without Composer
On this page you can find all versions of the php package startplatz/wordpress-integration-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download startplatz/wordpress-integration-bundle
More information about startplatz/wordpress-integration-bundle
Files in startplatz/wordpress-integration-bundle
Package wordpress-integration-bundle
Short Description Integration of WordPress in Symfony
License MIT
Homepage http://github.com/startplatz/wordpress-integration-bundle
Informations about the package wordpress-integration-bundle
WordPress Integration Bundle
Open-Source Bundle to integrate WordPress in a Symfony2 Project.
Features:
- Using WordPress and Symfony in parallel
- Using layout from WordPress as a Twig - Template by annotation
- Use Symfony Controller output as WordPress Shortcodes
Installation
Make sure Composer is installed globally, as explained in the installation chapter of the Composer documentation.
Applications that use Symfony Flex
Open a command console, enter your project directory and execute:
Applications that don't use Symfony Flex
Step 1: Download the Bundle
Open a command console, enter your project directory and execute the following command to download the latest stable version of this bundle:
Step 2: Enable the Bundle
Then, enable the bundle by adding it to the list of registered bundles
in the config/bundles.php
file of your project:
Manual Steps
enable a route that should be handled by WordPress in your routing configuration (e.g. config/routing.yaml)
....
wordpress:
resource: "@StartplatzWordpressIntegrationBundle/Controller/PassthruController.php"
type: annotation
Note: all your other routes should be configured in advance.
For Apache 2 User: Take the sample .htaccess file to your document root and adjust it to your needs e.g. Error Handling etc. Note: It is better to prevent WordPress from changing this file!
For other HTTP-Server you need to setup the rules based on the Apache rules
Setup WordPress
Your WordPress Installation should be located in the public
- folder of your Symfony2 - Project
To complete the integration you should update the globals - cache by calling the Symfony Console Command:
app/console startplatz:wordpress-integration:build-global-names-cache
Configuration
Add file config/startplatz_wordpress_integration.yaml
(if it is not done by flex yet)
- wordpress_root_dir: Directory, where Wordpress is installed - mandatory, no default value
Implementation
Using WordPress output as Twig - Template
Usage in Controller and Twig Template
defining the WordPress URL as template via annotation
<?php
namespace Acme\Bundle\WebsiteBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
use Startplatz\Bundle\WordpressIntegrationBundle\Annotation\WordpressResponse;
class DefaultController extends Controller
{
/**
* @Route("/",name="show_index")
* @WordpressResponse("/url-from-wordpress/", createTwigTemplate=true)
* @Template
*/
public function indexAction()
{
return array();
}
}
Your Twig Template should look like:
{% extends template_from_string(app.request.get('_wordpressTemplate')) %}
{% block something %}
Hello world!
{% endblock %}
Note: The twig function template_from_string()
is not activated by default. See the documentation http://twig.sensiolabs.org/doc/functions/template_from_string.html for this.
Define blocks in WordPress
In your WordPress page (or post) you can define as many blocks as you want. The WordPress Integration Bundle translates the wildcards like %%SOMETHING%%
to the block definitions {%block something %}{% endblock %}
There are some default blocks that are integrated every time:
{% block additionalHead %}{% endblock %}
{% block additionalBody %}{% endblock %}
{% block robots %}index,follow{% endblock %}
All versions of wordpress-integration-bundle with dependencies
symfony/framework-bundle Version ~3.4|~4.0|~5.0
sensio/framework-extra-bundle Version ~3.4|~4.0|~5.0
doctrine/dbal Version >2