Support

Account

Home Forums General Issues Using Page Link field with is_page() Reply To: Using Page Link field with is_page()

  • You don’t need to us array in this statement

    
    if( is_page( array( $alert_page_array ) ) ) {
    

    that actually creates this

    
    if( is_page( array(array( '34','63','91' ) ) ) ) {
    

    just do

    
    if( is_page( $alert_page_array ) ) {