Last active
September 1, 2017 02:42
-
-
Save stevengliebe/366b7aed6d3cfb3654c7 to your computer and use it in GitHub Desktop.
Example of using Church Content plugin field_overrides. http://churchthemes.com/guides/developer/church-content/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
'field_overrides' => array( | |
'_ctc_person_urls' => array( | |
'name' => __( 'New Title', 'yourtheme' ), | |
'desc' => __( 'Enter one URL per line.', 'yourtheme' ) | |
), | |
'_ctc_person_email' => array( | |
'desc' => sprintf( __( 'The WordPress <a href="%s" target="_blank">antispambot</a> function is used to help deter automated email harvesting.', 'yourtheme' ), 'http://codex.wordpress.org/Function_Reference/antispambot' ) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment