Skip to content

Instantly share code, notes, and snippets.

@gmarokov
gmarokov / wp-breadcrumbs.php
Last active October 22, 2019 06:49
Generate breadcrumbs
<?php
/**
* Generate breadcrumbs
*/
//TODO Translation ready strings
function get_breadcrumb() {
echo '<a href="'.home_url().'" rel="nofollow">Home</a>';
if (is_category() || is_single()) {
@gmarokov
gmarokov / wp-exerpt.php
Last active October 22, 2019 06:48
Modify excerpt to use limit of characters
//Modify excerpt to use limit of characters
function get_excerpt($limit) {
$excerpt = explode(' ', get_the_excerpt(), $limit);
if (count($excerpt)>=$limit) {
array_pop($excerpt);
$excerpt = implode(" ",$excerpt).'...';
} else {
$excerpt = implode(" ",$excerpt);
}