Generatepress Premium Latest Version Installing GP Premium Plugin
Generatepress Premium Latest Version Is the Most Popular and Most Used Theme Today. It Is the Number 1 Theme of WordPress. Today We Are Going to Share Its Latest Version with You and Will Also Give You Its Pro Version So That You Can Use It for Life Time. Can
Generatepress Premium Theme Adsense Approval Customization
If You Are Facing Any Problem Related to Theme in Getting Adsense Approval, Then You Must Try This Theme Once on Your WordPress Blog, You Will Definitely Get Adsense Approval. Replace the Code with Full Customization in the Css of Your Theme
Generatepress Gp Premium Latest Version Plugin
Without Gp Premium This Theme Has No Use, Hence It Is Very Important for You to Have This Gp Premium Plugin, You Can Buy It or You Will Get Its Link Below, from There You Can Also Download It with License Key. Gp Premium Plugin Download
91fe29cb80aec4500a77a17bf66f2c8f
Remove #more | Fix Permalink GeneratePress Theme
When You Use This Generatepress Premium Latest Version in Your Blog, You Will Have to Face a Problem, for That I Have Given a Code Below Put It in Your Theme, Your Permalink Problem Will Be Solved.
add_filter( 'generate_more_jump', '__return_false' );
Generatepress Premium Latest Version Site Footer
If You Want to Design the Footer of Your Blog in Which All the Website Pages Are Shown and Your Profile Is Also Shown and on the Right Side You Can Also See the Category of Your Blog, Then You Have to Put the Code Given Below. Site Footer Code
Generatepress Premium Latest Version Sidebar Widgets
Sidebar Widget Where You Can Show the Images of Your Post, It Will Be Absolutely Responsive, No Load Will Be Loaded on Your Website, the Speed of Your Website Will Not Reduce, Sidebar Widget Code
Related Posts HTML Code
<div>
<h2 class=”wpsp-related-title”>Related Posts</h2>
<?php if ( function_exists( ‘wpsp_display’ ) ) wpsp_display( 1634 ); ?>
</div>
Related Posts CSS
/* Related Post CSS */
.wpsp-related-title {
padding-top: 20px;
}
.wp-show-posts-image img {
border-radius: 10px;
box-shadow: rgba(23,43,99,.2) 0 5px 25px!important;
}
Generatepress Premium Latest Version Author box
After Creating Elements Add New Element, Enter the Php Code Given Below, After That You Have to Make Some Settings in the Author Box Elements.
Author Box php Code
<div class=”author-box”>
<div class=”avatar”>
<?php echo get_avatar( get_the_author_meta( ‘ID’ ), 250 ); ?>
</div>
<div class=”author-info”>
<h5 class=”author-title” itemprop=”author” itemscope itemtype=”http://schema.org/Person”>
<span itemprop=”name”><?php printf( get_the_author_meta( ‘display_name’) );?></span>
</h5>
<div class=”author-summary”>
<p class=”author-description”><?php echo wp_kses( get_the_author_meta( ‘description’ ), null ); ?></p></div>
<div class=”author-links”>
<a href=”<?php echo get_author_posts_url( get_the_author_meta( ‘ID’ ) ); ?>” title=”Read more”>…</a>
</div>
</div>
</div>
CSS Code
.author-box {
padding: 3%;
padding-bottom: 10px;
margin-top: 30px;
font-size: 0.9em;
background-color: #fff;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
box-shadow: 0 9px 28px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22);
}
.author-box .avatar {
width: 250px;
height: auto;
border-radius: 100%;
margin-right: 30px;
}
h5.author-title {
margin-bottom: 0.1em;
font-weight: 600;
}
.author-description {
line-height: 1.6em
}
.author-links a {
margin-top: -1.5em;
font-size: 2em;
line-height: 2em;
float: left;
}
@media (max-width: 768px) {
.author-box {
padding: 20px;
padding-bottom: 25px;
margin-top: 60px;
flex-direction: column;
text-align: center;
}
.author-box .avatar {
margin-right: 0;
width: 100%;
margin-top: -25px;
}
.author-box .avatar img {
max-width: 100px;
}
.author-links a {
float: none;
align-self: center;
}
.author-description {
margin-bottom: -0.1em;
}
}