This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/inc
IanDelMar eaacf2f606
Add filters for posted on/by
```php
// Hide date last modified
add_filter( 'understrap_posted_on_time', 'prefix_hide_modified' );
function prefix_hide_modified() {
		$time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>';
		$time_string = sprintf(
			$time_string,
			esc_attr( get_the_date( 'c' ) ),
			esc_html( get_the_date() )
		);
		return $time_string;
}

// Hide posted by
add_filter( 'understrap_posted_by', '__return_false' );

// Hide posted on
add_filter( 'understrap_posted_on', '__return_false' );
2018-09-18 23:02:54 +02:00
..
.DS_Store rev task updated only runs on dist 2018-06-04 23:27:23 +02:00
class-wp-bootstrap-navwalker.php Prevent direct access 2018-09-10 23:59:04 +02:00
custom-comments.php Prevent direct access 2018-09-10 23:59:04 +02:00
custom-header.php Prevent direct access 2018-09-10 23:59:04 +02:00
customizer.php Prevent direct access 2018-09-10 23:59:04 +02:00
editor.php Prevent direct access 2018-09-10 23:59:04 +02:00
enqueue.php Prevent direct access 2018-09-10 23:59:04 +02:00
extras.php Prevent direct access 2018-09-10 23:59:04 +02:00
hooks.php Prevent direct access 2018-09-10 23:59:04 +02:00
jetpack.php Prevent direct access 2018-09-10 23:59:04 +02:00
pagination.php Prevent direct access 2018-09-10 23:59:04 +02:00
setup.php Prevent direct access 2018-09-10 23:59:04 +02:00
style-wpcom.css cleanup inc folder and add wordpress.com stuff 2017-02-07 15:30:03 +01:00
template-tags.php Add filters for posted on/by 2018-09-18 23:02:54 +02:00
theme-settings.php Prevent direct access 2018-09-10 23:59:04 +02:00
widgets.php Prevent direct access 2018-09-10 23:59:04 +02:00
woocommerce.php Prevent direct access 2018-09-10 23:59:04 +02:00
wpcom.php Prevent direct access 2018-09-10 23:59:04 +02:00