Skip to main content

Discover

WordLift brings to the readers of your site multiple means of content discovery.

WordLift leverages on the semantic network of concepts (or entities) being created to help users explore the content of your site.

Using the graph created by WordLift innovative ways of navigating the contents can be implemented (this is particularly true if you are a developer.)

WordLift helps users discover content in eight different ways:

  1. Links to Entity Pages: linking annotated entities, now also features a Context Card presenting a preview of the concept;
  2. Navigator Widget: providing links to other blog posts related to the article;
  3. Faceted Search Widget: helping users discover related content using other entities;
  4. Timeline Widget: creating beautiful and interactive timelines;
  5. Geomap widget: displaying entities of type "Place" on a map;
  6. Chord Widget: providing a quick overview of the network of concepts related to an article;
  7. Entity Cloud Widget: presenting the list of entities mentioned in the article;
  8. Glossary Widget: presenting entities in alphabetical order.

Entity Links are useful for three reasons:

  1. They allow users to navigate the website
  2. They help establish information hierarchy using the network of entities
  3. They could help spread link juice (ranking power) around the websites for better SEO.

image

These links can be personalised using the CSS class wl-entity-page-link. As seen in the example NASA is a link to an entity page while Mars is a normal link to an external webpage.

Context Cards

Context Cards provide an immediate preview of an entity. If the entity has been annotated and, if links are active, WordLift will show a preview of the annotated entity.

By default context cards will show up on hovering if Links to Entity Pages are enabled. To disable context cards, add the following code to your theme:

add_filter('wl_context_cards_show' '__return_false')

Note

Based on the original work of Wikipedia Context Cards.

The Navigator Widget

The Navigator Widget provides content recommendations by presenting relevant links to other blog posts on your website.

image

Each tile presents a link to a semantically related blog post (and optionally a link to an entity). The template for the Navigator Widget can be modified and styled as per the theme UI.

The Faceted Search Widget

Using the Faceted Search Widget readers, selecting concepts they are interested in, can find all related articles.

image

Users can choose multiple concepts to drill down the list of articles related to them.

The default title for this widget - when it is added to a page - is "Related articles". This title be customised by adding the new title in the shortcode as shown in the example below.

[wl_faceted_search title="this is my new title"]

The Timeline Widget

WordLift uses the powerful TimelineJS to create beautiful, interactive timelines. The timeline widget in WordLift uses nothing more than entities of type event mentioned and annotated in the article.

Entities of type event can be linked to entities of type place via the property location (this describe where the event is taking place). If a place is mentioned in the article and it is linked to an event the timeline will display this event also.

image

Note

In order for an event to appear in the timeline the event property startDate shall be present as illustrated here.

It is possible to personalise the layout of the timeline using any of the presentation options of TimelineJS plus three additional parameters provided by WordLift:

  1. excerpt_length let's you control the lenght of text (in number of characters) displayed for each event (this corresponds to the description of the entity)
  2. display_images_as the default value is media, alternatively you can use background and the fetured image of the entity will be used as background
  3. global when set to true the timeline displays events mentioned in the latest posts (no need to add mentions to places or events in this case).
Note

When you create a timeline with WordLift you can pass in the shortcode optional parameters to set a variety of presentation options. These are derived from the TimelineJS library read more here.

[wl_timeline display_images_as='background' height='600px' excerpt_length=25 global='true']

This shortcode above produces the following result:

image

The Timeline WordPress Widget

The Timeline WordPress Widget is a site-wide Widget that displays events being saved as entities (type event) using the interactive timeline.

image

The Geomap Widget

The Geomap Widget displays entities of type "Place" mentioned in the article on a Geomap.

image

The Chord Widget

The Chord Widget visualizes the relations between entities within a given article.

image

User might choose to navigate to an entity page or to another blog post.

The Entity Cloud Widget

The Entity Cloud Widget is a site-wide Widget and a shortcode that displays entities related to the current post/entity in a tag cloud. WordPress Widgets like this one add content and features to your Sidebars. To add the widget:

  1. Go to Appearance > Customize in the WordPress Administration Screens.
  2. Click the Widget menu in the Theme Customizer to access to the Widget Customize Screen.

image

It is possible, just like for other WordPress Widgets to personalize the title of the Widget. This widget can also be added to an article or a page with the following shortcode:

[wl_cloud]

The Glossary Widget

The Glossary is a site-wide Widget that displays all the entities in alphabetical order.

[wl_vocabulary limit=... type=... orderby=...]

By default the widget takes into account the latest 100 entities from all types (i.e. Person, Place, Organization, ...). The following paramenters can be used to personalise the entities beind displayed in the vocabulary:

  1. limit the total number of entities to displaye (100 is the defualt value). Use limit='-1' to remove the limit.
  2. type the type of entities to display (all is the default value). Use type='Person' to display only entities of type Person.
  3. orderby the selection is by default related to the alphabetical order (title is the default value).
  4. cat the selection is done using the WordPress Category ID (the category shall be associated to a set of entities). Read here how to find the Category ID.

image

Here you can see an example of the Semantic SEO Glossary.

In the next section, you can read all about the parameters that you can use to personalize each widget using shortcodes.