Adding post lists and grids to your Site couldn’t be easier than with the WP Show Posts plugin. Dispatch uses the Free version to display posts on the Front page and in the Sidebars. Of course with a little Flint Skin CSS treatment.
Head off to Dashboard > WP Show Posts > All Lists. Within are six lists:
- Align
- Standard
- Sidebar
- Header
- Simple
- Simple Sidebar
Each of them have very particular settings required to match the demo content you see here. Changing those settings may affect the way the post is displayed, and not necessarily for the better. So please work on a duplicate or make a note before changing.
Note: the name of the List has no relevance to the different styles displayed.
General ( and important ) information
Before we go into the detail let’s cover some basic and very important information.
Advanced Settings
For the purpose of the demo content a couple of the Lists are using Advanced Settings. First off the Standard List is using Ascending Order (Default: Descending). Secondly the Simple List is using Offset, so it omits the first 4 posts. You may want to put these back to default if you’re not intending to replace them.
Duplicating WP Show Posts List
So we have four lists, and we want to make a new Standard list with a different category. The easiest way is to use one of the Duplicate Post plugins in the WordPress repository. Simple hey. And it works for all post types including GP Elements. Awesome. Note: When making a duplicate you are generally given two options. Clone and New Draft. I advise using the New Draft as some people have reported issues when using Clone.
List: Standard
This is the standard WP Show Post list that has the same custom styling applied to the GP Blog:
¿Qué se necesita para ser feliz en el trabajo, según Harvard?
Podríamos creer que el trabajo ideal viene acompañado de un buen sueldo, un horario flexible que nos permita disfrutar de nuestro tiempo personal o, incluso, de que éste se encuentre cerca de casa.
¿Sabías que puedes estudiar un MBA Global y trabajar hasta 3 años en Estados Unidos? La UAG lo hace posible
¿Sabías que puedes estudiar una Maestría en Administración de Empresas Globales (MBA Global) y trabajar hasta 3 años en Estados Unidos? 🌎
Con la UAG y ASU, obtienes doble titulación y una experiencia académica global, sin salir de México o con opción presencial en EE.UU.
Conoce cómo dar el siguiente paso hacia tu futuro profesional internacional.
¿Quieres comenzar a emprender? Estas apps te pueden ser de ayuda
Las aplicaciones móviles pueden ser tus mejores aliadas para hacerlo. En este artículo, te presentamos 5 apps que te ayudarán a emprender.
¿Qué posgrados en la ENAH puedes estudiar?
¿Buscas especializarte en Antropología, Historia o Arqueología? La ENAH ofrece posgrados de excelencia reconocidos a nivel nacional. Aquí te contamos todo sobre sus programas, requisitos y cómo aplicar en 2026.
This is how the list is displayed within the Content area just by adding the WP Show Post Shortcode. Here follows the basic styling changes that have been made.
Content Wrap (WPSP Only)
Using a custom Hook Element the Post article content is now wrapped within a DIV container. This container carries a class of wpsp-content-wrap
for styling. This wrap is present on all WP Show Posts that are output inside Dispatch.
Featured Image
The featured image has a fixed height to match the layout. This is achieved using this CSS:
.generate-columns-container article .inside-article img, .wp-show-posts-image img {
height: 180px;
width: 100%;
-o-object-fit: cover !important;
object-fit: cover !important;
}
You can edit the height property to suit, or remove the CSS it entirely if you want to use your own sizes.
Meta above title
This is achieved using a flex box on the Entry Header. Again this applied to the GP Blog:
.generate-columns-container article .entry-header, .wp-show-posts-entry-header {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
Entry Title forced to 2 lines
The entry title always displays a minimum and maximum of 2 lines. This mantains the across row alignment. Again this is applied to GP Blog. The ex
unit is used to define the number of lines visible. The lines are set by defining the line-height
and setting the height
to as many mutiples as you require lines. e.g up the height to 7.5ex will create three lines.
.generate-columns-container article .entry-header .entry-title, .wp-show-posts article .wp-show-posts-entry-title {
line-height: 2.5ex;
height: 5ex;
overflow: hidden;
text-overflow: ellipsis;
}
List: Align
Designed for a single column list this displays the content the image to the left and content to the right. This is subtly different to just resizing the image in the WP Show Posts list settings and aligning it left. Thanks to the Content Wrap we added (above) the content will never wrap around the image. On mobile it just stacks.
To add one of these your posts requires a little markup. And is done like so:
<div class="wpsp-align">shortcode_goes_here</div>
¿Estudiar un posgrado o una segunda carrera? Lo que debes tener en cuenta
La duda de no saber si estudiar un posgrado o una segunda carrera es muy frecuente entre las personas que desean ampliar su conocimiento y, sobre todo, engrosar su currículum para encontrar un buen trabajo o emprender proyectos de tipo personal, porque es cierto, para lograr estos objetivos es muy importante complementar la formación académica…
Consecuencias negativas de ser perfeccionista
El ser humano siempre ha sido un animal muy competitivo, pero las circunstancias en las que vivimos parecen estar acentuando este rasgo. Las crecientes exigencias que se nos imponen en áreas tales como la académica o la laboral dan buena cuenta de ello, auspiciando un afán de superación insaciable y agotador. ¿Qué es el perfeccionismo?…
¿Por qué el empleo híbrido domina el mercado laboral?
El mercado laboral evoluciona: las ofertas de empleo híbrido aumentan más de un 6% en México. Universia revela los perfiles más demandados y cómo los jóvenes pueden aprovechar esta tendencia.
8 preguntas frecuentes en una entrevista para la maestría
Uno de los filtros con los que te encontrarás al postularte como candidato en un programa de maestría, será una entrevista. Si llegaste a esta etapa, son buenas señales, significa que estás más cerca. Siempre es bueno ir preparado con algunas respuestas posibles, por esta razón, estas son 8 preguntas frecuentes en la entrevista para…
Lists: Sidebar
In the right had sidebar you can see the Sidebar list. This List is set to 1 column and only displays the Featured Image, Title and Category. This is designed for Widgets, a narrow column or as part of a grid (like in our next List).
To add this style the Widget requires a CSS Class of:
wpsp-card
Dispatch comes with Widget Classes Plugin installed. This provides this function.
List: Header
The Header list as seen on the Front Page requires a list containing only 5 posts. And can accomodate most of the content elements. Which are only displayed on the large leader post.
To add this style the Header Element requires the following element classes:
wpsp-grid wpsp-card
List: Simple
This is output using the wpsp-card
inserted into a containing DIV like so:
<div class="wpsp-card">shortcode goes here</dib>
List: Simple Sidebar
Nothing fancy here, just a list being output using the a Widget in the sidebar.