PowerPress includes advanced options for customizing certain text labels using wp-config.php. These options are intended for developers or advanced users who need to override default labels programmatically.
wp-config.php is an advanced task. Incorrect changes can affect your WordPress site. Only proceed if you are comfortable working with WordPress configuration files.Available wp-config.php Options
You can add the following defines to your wp-config.php file to customize text labels used by PowerPress.
Podcast Label
define("POWERPRESS_LINKS_TEXT", "Podcast");
Changes the label used for podcast links.
Duration Label
define("POWERPRESS_DURATION_TEXT", "Duration");
Changes the label displayed for episode duration.
Play in New Window Label
define("POWERPRESS_PLAY_IN_NEW_WINDOW_TEXT", "Play in new window");
Changes the label for opening media in a new window.
Download Label
define("POWERPRESS_DOWNLOAD_TEXT", "Download");
Changes the label used for download links.
Link Separator
define("POWERPRESS_LINK_SEPARATOR", "|");
Changes the separator used between media links.
When to Use These Options
You may want to use these settings if:
- You need to match specific wording across your site
- You are localizing or translating labels manually
- You are customizing output beyond what is available in PowerPress settings
Alternatives
Before using wp-config.php defines, consider:
- Checking PowerPress settings for built-in customization options
- Using your WordPress theme to modify how content is displayed
- Using translation tools for language changes




