Deze plugin is niet getest met de laatste 3 grotere versies van WordPress. Mogelijk wordt het niet meer onderhouden of ondersteund. Ook kunnen er compatibiliteitsproblemen ontstaan wanneer het wordt gebruikt met recentere versies van WordPress.

Just Post Preview Widget

Beschrijving

This plugin is for developers who need easy to edit the complex layouts and insert different post tile blocks inside the layout,
sidebars or page builders. By default, it has 3 pre-defined layouts; you can rewrite them in your theme or register custom layouts.
Unfortunately the pre-defined layouts have no styles inside. (Because they will be overwritten in the theme 100% anyway).

Template files

To overwrite the pre-defined templates, you should create a folder with the name “just-post-preview” in the root
of your theme and copy required templates from the /wp-content/plugins/just-post-preview/layous/ folder.

File names format: jpp_layout_{layout key}.php

You can find PHP comments on the top of the demo templates. They help your IDE to show you autocomplete boxes for available variables.

Adding custom layout

To add a custom layout, you need to add a new filter hook in your theme functions.php file:

add_filter('jpp_post_preview_layouts', 'my_post_preview_layouts');
function my_post_preview_layouts($layouts){
    $layouts['my_layout_key'] = 'My custom layout';
    return $layouts;
}

After that hook you will need to create a template file in the /path/to/theme/just-post-preview folder with the name jpp_layout_my_layout_key.php.

That’s all!

FILL FREE TO CONTACT ME IF YOU FIND ANY BUGS/ISSUES!

ISSUES TRACKER
The project is also available on github. Please post your issues or feedbacks there.
https://github.com/aprokopenko/just-post-preview

Schermafdrukken

  • Widget edit screenshot
  • Using widget inside the SiteOrigin Page builder plugin

Installatie

  1. Download, unzip and upload to your WordPress plugins directory
  2. Activate the plugin within you WordPress Administration Backend
  3. That’s it – you can add a new widget now

FAQ

Installation Instructions
  1. Download, unzip and upload to your WordPress plugins directory
  2. Activate the plugin within you WordPress Administration Backend
  3. That’s it – you can add a new widget now

Beoordelingen

We use SiteOrigin Page Builder plugin in our development and usually you need to add preview of some post or content on some landing page. This plugins adds ability to do that very quickly. And you can customize it for each site with custom templates in a 15 minutes.
Lees 1 beoordeling

Bijdragers & ontwikkelaars

“Just Post Preview Widget” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

Vertaal “Just Post Preview Widget” naar jouw taal.

Interesse in ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.

Changelog

Version 1.1.1

* Bug fix: Merged Pull Request from @rudibatt: missing break in templates load loop.

Version 1.1

* New feature: Ability to search without specifying post type (beta)
* New hook: You can control the templates source with new hook `jpp_post_preview_template`
* Bug fix: PHP 7+ compatibility fix

Version 1.0

* Plugin base with 3 pre-defined layouts