• Resolved Jason Chong

    (@dantianhealth)


    when using this in the post editor to suggest title / excerpt (which is often picked up as meta description by seo plugin) how can I set a limit for the output (ie 60 character title, 160 character except)?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Val Meow

    (@valwa)

    Hey @dantianhealth! ??

    Currently, this is hard-coded, and there are no parameters available for modification. However, you can use AI Engine filters to completely override the query and create your custom prompts for both the excerpt and title. ??

    add_filter( 'mwai_ai_query', function ( $query ) {
    
    
        $query->set_new_message( 'Your own prompt' );
      
        return $query;
      }, 10, 2 );
    Thread Starter Jason Chong

    (@dantianhealth)

    so how would I utilise that to simply modify the prompts for title and excerpt generation to add a character limit. What you have provided seems quite generalised

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Limit except length’ is closed to new replies.