How to Add “More” Link Inline for Blog Entries
By default the Total theme disables the "more" tag because it has built-in custom buttons for your blog entries. However, you can re-enable it with the following function
By default the Total theme disables the "more" tag because it has built-in custom buttons for your blog entries. However, you can re-enable it with the following function
The Total theme includes a "Secondary Thumbnail" field which is used for the "Image Swap" overlay style when using custom Visual Composer grids. However, you can make use of this field for anything you want! For example you can override…
By default if the theme see's that your post is using the more tag it will use that for the blog entry excerpts. If you want to ignore the more tag and use the theme's custom excerpt function you can…
#site-navigation .dropdown-menu > li > a > span.link-inner { position: relative; } #site-navigation .dropdown-menu > li > a > span.link-inner:after { position: absolute; bottom: 0px; content: ""; background: #4a97c2; width: 0; height: 2px; left: 0; transition: 0.3s all; } #site-navigation…
Simply change the #000 hex color to your desired hex value.
function myprefix_tweak_breadcrumbs( $trail ) { // Change trail end title $trail['trail_end'] = 'YOUR CUSTOM END'; // Return breadcrums trail return $trail; } add_filter( 'wpex_breadcrumbs_trail', 'myprefix_tweak_breadcrumbs' );
You can now do this via a Customizer option at Customize > Header > Menu > Center Menu Items so there is no need for custom CSS.
@media only screen and (min-width: 960px) { body.wpex-has-vertical-header #site-header { width: 200px; } body.wpex-has-vertical-header.full-width-main-layout #wrap { padding-left: 200px } }
// Allow HTML in Visual Composer Toggle heading. add_filter( 'wpb_toggle_heading', function( $heading, $atts ) { return html_entity_decode( $heading ); }, 10, 2 );
function my_page_featured_image() { if ( is_singular( 'post' ) && has_post_thumbnail() ) { echo ''. get_the_post_thumbnail( '', 'full' ) .''; } } add_action( 'wpex_hook_main_top', 'my_page_featured_image' );