最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

theme development - Put CSS Content inside tag <style amp-custom> for Wordpress

programmeradmin2浏览0评论

I just want to put the CSS's content inside tag <style amp-custom>

This is my action inside function

function amp_template_add_styles() {
    $stylesheets = get_template_directory_uri() . '/material/public/app.min.css';
    echo file_get_contents( $stylesheets );
}
add_action( 'amp_template_css', 'amp_template_add_styles', 99 );

And i call the function insider tag <head>

<style amp-custom>
    <?php do_action( 'amp_template_css', 'amp_template_add_styles'); ?>
</style>

And this is the error when i implement in this way

There are anyone knows about this, please help me, thanks

发布评论

评论列表(0)

  1. 暂无评论