Skip to content

Instantly share code, notes, and snippets.

@codeiscode-dev
Last active August 29, 2018 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codeiscode-dev/c50b8d23a65b5298e33742cb3c076654 to your computer and use it in GitHub Desktop.
Save codeiscode-dev/c50b8d23a65b5298e33742cb3c076654 to your computer and use it in GitHub Desktop.
WPEP PHP - Index Page Button Filters
<?php
return '<span class="dashicons dashicons-arrow-right-alt"></span> My Custom Text';
<?php
return '<span class="dashicons dashicons-arrow-right-alt"></span> ' . $button_text;
<?php
add_filter( "wpep_primary_content_item_link_title", function( $button_text ){
return '<span class="dashicons dashicons-arrow-right-alt"></span> ' . $button_text;
}, 101 );
<?php
add_filter( "wpep_primary_content_item_link_title", function( $button_text ){
return '<span class="dashicons dashicons-arrow-right-alt"></span> ' . $button_text;
}, 8 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment