Akash Dixit
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add Description in CategoryHi,
Please visit this site:
https://ww.wp.xz.cn/plugins/wp-hide-post/Forum: Developing with WordPress
In reply to: How to apply Customizer colors ?Hi,
try this code:
function mytheme_customize_css()
{
?>
<style type=”text/css”>
h1 { color: <?php echo get_theme_mod(‘header_color’, ‘#000000’); ?>; }
</style>
<?php
}
add_action( ‘wp_head’, ‘mytheme_customize_css’);Forum: Fixing WordPress
In reply to: How to add a user profile in menu with avatar ?WordPress currently only allows you to use custom avatars that are uploaded through Gravatar. WP User Avatar enables you to use any photo uploaded into your Media Library as an avatar. This means you use the same uploader and library as your posts. No extra folders or image editing functions are necessary.
WP User avatar also lets you:
*Upload your own Default Avatar in your WP User Avatar settings.
*Show the user’s Gravatar avatar or Default Avatar if the user doesn’t have a
WP User Avatar image.
*Disable Gravatar avatars and use only local avatars.
*Use the [avatar_upload] shortcode to add a standalone uploader to a front page
or widget. This uploader is only visible to logged-in users.
*Use the [avatar] shortcode in your posts. These shortcodes will work with any
theme, whether it has avatar support or not.
*Allow Contributors and Subscribers to upload their own avatars.
*Limit upload file size and image dimensions for Contributors and Subscribers.Forum: Developing with WordPress
In reply to: Passing array data to a variableI think this code will help you
global $get;
$arr= get_the_tags();
if($arr) {
$get_name= ”;
foreach($arr as $ar){
$the_slug = $ar->slug;
$get_name .= $the_slug;
}
}
echo $get_name;Forum: Requests and Feedback
In reply to: No Progress Bar on WordPress Export Tool?Please spend some time to read this article.i hope this is helpful for you.
https://www.wpbeginner.com/plugins/how-to-add-a-reading-progress-bar-in-wordpress-posts/
and for import-export please visit given below link:
paid plugin redacted- This reply was modified 7 years, 10 months ago by Jan Dembowski.
Forum: Networking WordPress
In reply to: Enable a theme in PHPhttps://codex.ww.wp.xz.cn/Function_Reference/switch_theme
I think this link is helpful for you..