Skip to content
View ThemeMetric's full-sized avatar
🏠
Freelancer
🏠
Freelancer
Block or Report

Block or report ThemeMetric

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
ThemeMetric/README.md

👋 Hello there! I'm Sajjad Hossain

I am a freelance WordPrress Developer

Sajjad Hossain
  • 🏢  I'm currently working at Upwork
  • 🌱  I’m currently learning Reactjs
  • 💬  I like to talk about Linux and Open Source
  • 📫  Ask me about anything, I am happy to help :)
  • 💻  Connect with me on LinkedIn
  • 🐦  Let's talk more in Twitter

Favorite Tech

Tools, languages, and other things that I like to work with.

JavaScript
JavaScript
Python
Python
Django
Django
Azure
Azure
TypeScript
TypeScript
React
React JS
Bootstrap
Bootstrap
Node JS
Node JS
Mongo DB
MongoDB
C
C Lang
Linux
Linux
Gatsby
Gatsby
Electron
Electron
Firebase
Firebase
WordPress
WordPress
GraphQL
GraphQL
Git
Git
PHP
PHP
TailWind
TailWind
Bash
Bash
Figma
Figma
Tensorflow
Tensorflow
Material UI
Material ui
Flask
Flask
Redux
Redux
Next JS
Next JS
Google Cloud
G Cloud

Pinned

  1. ellipticalreviews ellipticalreviews Public

    A custom WordPress theme for Review WordPress site with star review.

    PHP 1

  2. wp-custom-child-theme wp-custom-child-theme Public

    Custom child theme.

    CSS

  3. infointeriors infointeriors Public

    WordPress Headless cms template

    JavaScript

  4. How to create different thumb size f... How to create different thumb size for different post type.php
    1
    <?php
    2
    
                  
    3
    add_action( 'pre-upload-ui', 'get_the_post_type' );
    4
    function get_the_post_type() {
    5
        $post_type = isset( $_REQUEST['post_type'] ) ? $_REQUEST['post_type'] : 'post';
  5. Remove Query string of css/js files Remove Query string of css/js files
    1
    
                  
    2
    // pest this function in your theme functions.php file
    3
            
    4
     // Remove Query string of css/js files
    5
    
                  
  6. Show Last Modified Date in WordPress... Show Last Modified Date in WordPress post
    1
    // Pest this code snipest in theme functions php file
    2
    function show_last_modified_date( $content ) {
    3
    $original_time = get_the_time('U');
    4
    $modified_time = get_the_modified_time('U');
    5
    if ($modified_time >= $original_time + 86400) {