Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
makura-2025
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Raj Shah
makura-2025
Commits
50427c74
Commit
50427c74
authored
Jan 01, 2025
by
rajshah
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed comments from single post
parent
bcd30511
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
functions.php
functions.php
+10
-0
single-post.php
single-post.php
+0
-0
No files found.
functions.php
View file @
50427c74
...
...
@@ -392,3 +392,12 @@ function custom_rewrite_rules() {
);
}
add_action
(
'init'
,
'custom_rewrite_rules'
);
// article read time
function
calculate_reading_time
(
$content
)
{
$word_count
=
str_word_count
(
strip_tags
(
$content
));
$reading_speed
=
200
;
$reading_time
=
ceil
(
$word_count
/
$reading_speed
);
return
$reading_time
;
}
//
!
article
read
time
\ No newline at end of file
single-post.php
View file @
50427c74
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment