Auto-Collapse Long Comments

add_filter( ‘comment_text’, function( $comment_content ) { $max_length = 100; // Set the maximum length of the comment to display without collapsing if ( strlen( $comment_content ) > $max_length ) { $short_content = substr( $comment_content, 0, $max_length ) . ‘…’; $full_content…Continue reading

Display Related Posts by Category

global $post; if ( ! empty( $post ) ) { $categories = get_the_category( $post->ID ); if ( $categories ) { $category_ids = array(); foreach ( $categories as $category ) { $category_ids[] = $category->term_id; } $query_args = array( ‘category__in’ => $category_ids,…Continue reading

Replace Post Title with ACF field

function sync_acf_post_title($post_id, $post, $update) { $acf_name = get_field(‘name’, $post_id); // Get the value of the “name” ACF field $acf_vorname = get_field(‘vorname’, $post_id); // Get the value of the “vorname” ACF field $post_type = get_post_type($post_id); if ($acf_name && $post_type === “kontakte”)…Continue reading

Houfy

<iframe style=”overflow:hidden;display:block;margin:0 auto;width:100%;max-width:400px;min-height:600px;border:none” src=”https://www.houfy.com/embed/Listing Number/pricing” frameborder=”0″></iframe>Continue reading