This tag is useful to give a link preview with custom post featured image, when you share the link post with social sites like- Facebook, Whatsapp, Twitter etc. og refers to Open Graph meta tag, you have to add add following line with your image address in the header part of the page <meta property="og:image" content="http://ia.media-imdb.com/images/rock.jpg" /> This is the way to set a particular static image as an open graph meta tag, but if you want to change image dynamically or according to your post then you have to follow below mentioned code. <meta property="og:image" content="<?php echo wp_get_attachment_url(get_post_thumbnail_id($post->ID)); ?>" />
https://dzone.com/articles/angular-5-material-design-login-application https://www.positronx.io/create-login-ui-template-with-angular-8-material-design/ https://gist.github.com/tarikguney/83cdae881f74b1addce8f3236f503379 Material icons https://material.io/resources/icons/?icon=menu&style=baseline Angular Material 8 Tutorial: Build Navigation UI with Toolbar and Side Navigation Menu==> https://www.techiediaries.com/angular-material-navigation-toolbar-sidenav/ MatListNav Menu Item with more button=> https://stackblitz.com/edit/mat-list-nav-menu-item-jnjdxb?file=app%2Fapp.component.html how to create a nested menu using angular mat-nav material? (updated)=> https://stackoverflow.com/questions/56054770/how-to-create-a-nested-menu-using-angular-mat-nav-material-updated does angular material have a grid system?
Comments
Post a Comment