/* counters */

body {
 counter-reset: section;
}
.counter p::before {
 counter-increment: 
  section;
 content: counter(section);
}





// remove "Private: " from titles
function remove_private_prefix($title) {
	$title = str_replace('פרטי: ', '', $title);
	return $title;
}
add_filter('the_title', 'remove_private_prefix');