Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter frybread

    (@frybread)

    Thank you brecht! That fix looks like it’s for twenty seventeen, but it gave me the fix for twenty sixteen:

    in theme\inc\template-tags.php find
    if ( 'post' === get_post_type() ) {
    change to
    if ( 'post' === get_post_type() || 'recipe' === get_post_type() ) {

    find
    if ( in_array( get_post_type(), array( 'post', 'attachment' ) ) ) {
    change to
    if ( in_array( get_post_type(), array( 'post', 'recipe', 'attachment' ) ) ) {

    • This reply was modified 8 years, 9 months ago by frybread.
    • This reply was modified 8 years, 9 months ago by frybread.
Viewing 1 replies (of 1 total)