-
Notifications
You must be signed in to change notification settings - Fork 2
Description
Dear Theme Author / Contributor,
I found a possible syntax error in travelify/library/structure/content-extensions.php
In theme version 3.0.8, the following code in the previous version
the_title( '', '', false )
has been updated to
the_title_attribute( '', '', false )
For example, this code is present on lines 119 and 151.
However, the function the_title_attribute has a different syntax with the function the_title .
To follow the syntax of the new function, the code should be like this:
the_title_attribute( array('before' => '' , 'after' => '' , 'echo' => false ) )
The syntax error has caused a problem as described in the wordpress support forum for the theme:
Plain post title above post image (Error)
In short, in archive page or category page, the title attribute of Image Thumbnail and "Read More" button does not work. And the title of the Thumbnail and "Read More" button, which should only appear on mouse hover, appears on top of the thumbnail and also before the "Read More" button.
Would you please check the code, and see if you can correct the code and update the theme.
Thank you very much.