ReleaseWire For Publishers

This documentation shows how you can customize ReleaseWire news widgets. For setup instructions and a list of the different widgets ReleaseWire offers check out our getting started guide.

Customizing News Widgets

ReleaseWire News Widgets are customized by added one or more HTML data-* attributes. These attributes must be defined in the "rwire-widget" div tag.

<div class="rwire-widget" data-rww-(option)="(value)"</div>
ElementDescriptionDefault
data-rwp-titleSets the title of the widgetLatest Press Releases
data-rww-nostyleRemoves the style options from the iFramefalse
data-rww-noimagesDisables the inclusion of images such as logosfalse
data-rwp-viewmoreShow the "View More" link at the bottomtrue
data-rwp-getlinkShow the "Get This Widget" long at the bottomtrue
data-rwp-rwlogoIncludes ReleaseWire's logo at the bottomtrue

Examples

Remove the "View More Link":

<div class="rwire-widget"
 data-rww-viewmore="false"
 data-rww-type="company" data-rww-id="2500"></div>

Remove the "Get This Widget Link":

<div class="rwire-widget"
 data-rww-getlink="false"
 data-rww-type="company" data-rww-id="2500"></div>

Remove ReleaseWire's logo from the bottom:

<div class="rwire-widget"
 data-rww-rwlogo="false"
 data-rww-type="company" data-rww-id="2500"></div>

Customize the title of the widget:

<div class="rwire-widget"
 data-rww-title="Our Press Releases"
 data-rww-type="company" data-rww-id="2500"></div>