cordant
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Forum: Fixing WordPress
In reply to: how make to videos from YT and images were visible on homepage?Forum: Fixing WordPress
In reply to: how make to videos from YT and images were visible on homepage?in index.php
<?php truncate_post();?>——-><?php the_content();?>can i change something in this code ???(`/*this function allows for the auto-creation of post excerpts*/
…`)Forum: Fixing WordPress
In reply to: how make to videos from YT and images were visible on homepage?when i replace i have error in this line 🙁 i have delete
/*this function allows for the auto-creation of post excerpts*/ function truncate_post($amount,$quote_after=false) { $truncate = get_the_content(); $truncate = apply_filters('the_content', $truncate); $truncate = preg_replace('@<script[^>]*?>.*?</script>@si', '', $truncate); $truncate = preg_replace('@<style[^>]*?>.*?</style>@si', '', $truncate); $truncate = strip_tags($truncate); $truncate = substr($truncate, 0, strrpos(substr($truncate, 0, $amount), ' ')); echo $truncate; echo "..."; if ($quote_after) echo('');maybe now i can do something…
Forum: Fixing WordPress
In reply to: how make to videos from YT and images were visible on homepage?/*this function allows for the auto-creation of post excerpts*/ function truncate_post($amount,$quote_after=false) { $truncate = get_the_content(); $truncate = apply_filters('the_content', $truncate); $truncate = preg_replace('@<script[^>]*?>.*?</script>@si', '', $truncate); $truncate = preg_replace('@<style[^>]*?>.*?</style>@si', '', $truncate); $truncate = strip_tags($truncate); $truncate = substr($truncate, 0, strrpos(substr($truncate, 0, $amount), ' ')); echo $truncate; echo "..."; if ($quote_after) echo('');i found only this in “function.php”. This is it?
Viewing 4 replies - 1 through 4 (of 4 total)