php - Changing text on wordpress multisite -
i have working on multisite. 1 of sites english , other spanish. need change text of spanish page can't find anywhere.
the page appears english text rendered front-page.php.
i don't see spanish supposed go:
<div class="mod_a clearfix"> <h1><i>/</i><i>/</i><i>/</i> <?php _e('teamwork','boot_strap'); ?></h1> <h2><?php _e('success depends on collaboration','boot_strap'); ?></h2> <p><?php _e('success function of multiple factors – of need come if world-class performance achieved. easy focus on race alone – conditions success have been established long before starting flag drops.','boot_strap'); ?></p> </div> how change other version of site?
the key php _e. php function calls translation string. see http://codex.wordpress.org/function_reference/_e
your theme should have pot file different language strings. see https://developer.wordpress.org/themes/functionality/localization/
Comments
Post a Comment