הקוד שמופיע בסרטון:של בניית קורסים של חיים
Mon Nov 06 2023 01:07:02 GMT+0000 (Coordinated Universal Time)
Saved by
@odesign
/* 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');
content_copyCOPY
Comments