• Resolved spy2

    (@spy2)


    Hello, i add

    .amp-wp-meta {
    display: none;
    }

    in wp-content/plugins/amp/templates/style.php

    but i am not able to hide author and date.

    How can i do?

    • This topic was modified 6 years, 6 months ago by spy2.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Weston Ruter

    (@westonruter)

    It is not correct to modify the template/style.php file in the plugin, as it will get overridden when new plugin updates are made.

    If you want to add custom CSS, you should do so by adding code like this to your custom theme’s functions.php or a custom plugin:

    add_action( 'amp_post_template_css', function() {
        ?>
        .amp-wp-meta {
            display: none;
        }
        <?php
    } );
Viewing 1 replies (of 1 total)

The topic ‘Hide author and date’ is closed to new replies.