- Timestamp:
- 05/03/2018 06:24:55 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/misc.php
r43148 r43150 1650 1650 '<p class="wp-policy-help">' . __( 'In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information.' ) . '</p>' . 1651 1651 '<p class="wp-policy-help">' . __( 'The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number.' ) . '</p>' . 1652 '<p>' . __( 'Our website address is: $1%s.' ) . '</p>' . 1652 /* translators: %s Site URL */ 1653 '<p>' . sprintf( __( 'Our website address is: %s.' ), get_bloginfo( 'url', 'display' ) ) . '</p>' . 1653 1654 1654 1655 '<h2>' . __( 'What personal data we collect and why we collect it' ) . '</h2>' . … … 1723 1724 // End of the suggested policy text. 1724 1725 1725 $content = str_replace( '$1%s', get_bloginfo( 'url', 'display' ), $content );1726 1727 1726 /** 1728 1727 * Filters the default content suggested for inclusion in a privacy policy. … … 1730 1729 * @since 4.9.6 1731 1730 * 1732 * @param $content string The defaul dpolicy content.1731 * @param $content string The default policy content. 1733 1732 */ 1734 1733 return apply_filters( 'wp_get_default_privacy_policy_content', $content );
Note: See TracChangeset
for help on using the changeset viewer.