Viewing 1 replies (of 1 total)
  • Well, this theme has been around only since 2012, so many, many years may be a bit of an exaggeration. Or maybe it just seems like a long time ;).

    The Montezuma theme makes it easy to incorporate all of the suggestions yourself. Just open the corresponding main template and look for the code to change. For example, to add entry-title class to the post title, open up the single.php virtual template (Appearance → Montezuma Options → Main Templates → single.php and look for this section of code:

    <h1>
    	<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark"><?php the_title(); ?></a>
    	<?php bfa_comments_number(); ?>
    </h1>

    Then add a class to the anchor tag so it looks like this:

    <h1>
    	<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" rel="bookmark" class="entry-title"><?php the_title(); ?></a>
    	<?php bfa_comments_number(); ?>
    </h1>

    There, done. Do the same for the other suggestions.

    If you have other questions about the Montezuma theme, please post them in the Bytes For All support forum.

Viewing 1 replies (of 1 total)
  • The topic ‘Hatom feed issues’ is closed to new replies.