
-
AuthorPosts
-
August 28, 2025 at 9:27 pm #1488688
add_filter( ‘avf_masonry_excerpt_length’, ‘masonry_excerpt_length’);
function masonry_excerpt_length() {
$excerpt = 5000;
return $excerpt;
}i need a function to allow html tags in this excerpt!!
i have tested some plugins and some codes, but they dont work..August 29, 2025 at 6:46 am #1488698Hey Christian,
Thank you for the inquiry.
Try to add this filter in the functions.php file to keep the html in the excerpt, but make sure not to add < link > tags to the html because it will break the masonry element.
function avf_custom_masonry_loop_entry_content_mod($loop_excerpt, $entry) { $loop_excerpt = $entry->post_excerpt; return $loop_excerpt; } add_filter('avf_masonry_loop_entry_content', 'avf_custom_masonry_loop_entry_content_mod', 10, 2);
Best regards,
IsmaelAugust 29, 2025 at 6:46 am #1488699Hey Christian,
Thank you for the inquiry.
Try to add this filter in the functions.php file to keep the html in the excerpt, but make sure not to add < link > tags to the html because it will break the masonry element.
function avf_custom_masonry_loop_entry_content_mod($loop_excerpt, $entry) { $loop_excerpt = $entry->post_excerpt; return $loop_excerpt; } add_filter('avf_masonry_loop_entry_content', 'avf_custom_masonry_loop_entry_content_mod', 10, 2);
Best regards,
IsmaelAugust 29, 2025 at 6:59 am #1488703seems to not work
August 29, 2025 at 7:04 am #1488705here is the access
August 29, 2025 at 7:05 am #1488706August 29, 2025 at 7:35 am #1488709Hi,
As mentioned above, you should not add link tags to the excerpt, as it will break the site layout. Looks like you’re trying to use button row shortcode, which creates links and breaks the masonry element. We recommend disabling this modification. The following html will also break the masonry element.
<a href="https://neu.balikci-schmidt.de/allgemein/dr-roswitha-koenigswieser-im-gespraech-3/">Klick mich</a> <a href="https://neu.balikci-schmidt.de/allgemein/dr-roswitha-koenigswieser-im-gespraech-3/">Aufruf zum Handeln</a> <a href="https://neu.balikci-schmidt.de/allgemein/dr-roswitha-koenigswieser-im-gespraech-3/">Klick mich</a>
Best regards,
IsmaelAugust 29, 2025 at 7:38 am #1488710but i need links
August 29, 2025 at 7:39 am #1488711that are a tags, not link
August 29, 2025 at 7:42 am #1488712i have updates the to version 7, now no links more
August 29, 2025 at 7:46 am #1488714ok. with links it dont work?
August 29, 2025 at 8:37 am #1488716we can close the thread
-
AuthorPosts
- The topic ‘post masonry excerpt’ is closed to new replies.