This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Title: Eventus Design - HTML Template | |
| * Author: VicThemes | |
| */ | |
| /* -------------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */ | |
| /** | |
| * 1. Change the default font family in all browsers (opinionated). | |
| * 2. Prevent adjustments of font size after orientation changes in IE and iOS. | |
| */ | |
| html { | |
| font-family: sans-serif; /* 1 */ | |
| -ms-text-size-adjust: 100%; /* 2 */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://pingomatic.com/ | |
| https://www.pingmylinks.com/ | |
| https://www.pingmyurls.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| register taxonomy | |
| add_action('init', 'wpshout_register_taxonomy'); | |
| function wpshout_register_taxonomy() { | |
| $args = array( | |
| 'hierarchical' => true, | |
| 'label' => 'Awesome Taxonomy', | |
| ); | |
| register_taxonomy( 'awesome_taxonomy', array( 'post', 'slider', 'awesome' ), $args ); | |
| $args = array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Board PSC jsc All Result | |
| ##########কিভাবে JSC/JDC ও PSC পরীক্ষার ফলাফল দেখবেন। কালেকট→→টেক মাসটার বিডি | |
| 🔰🔰 JSC/JDC র ফলাফল দেখার জন্য 🔰🔰 | |
| #এখান থেকে রেজিঃ নাম্বার ছাড়া ফলাফল দেখতে পারবেন ⏬ | |
| http://eboardresults.com/app/stud/ | |
| #এখান থেকে রেজিঃ নাম্বার দিয়ে ফলাফল দেখতে পারবেন⏬ | |
| http://www.educationboardresults.gov.bd/ | |
| #এখান থেকে সব স্কুল এর ফলাফলের জন্য⏬ | |
| http://eboardresults.com/app/stud/?rtype | |
| বা |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| function my_customizer($wp_customize ){ | |
| $wp_customize->add_setting('header_logo',array( | |
| 'default' => '#000', | |
| 'transport' => 'refresh' | |
| )); | |
| $wp_customize->add_section('my_theme_section',array( |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //এটা কাস্টম পোস্ট এ বসবে , অব্যই ফানশন এর ভিতর হবে। | |
| $labels = array( | |
| 'name' => __( 'Portfolio','webdgallery'), | |
| 'singular_name' => __( 'Portfolio','webdgallery'), | |
| 'add_new' => __( 'Add New','webdgallery' ), | |
| 'add_new_item' => __( 'Add New Work','webdgallery' ), | |
| 'edit_item' => __( 'Edit Work','webdgallery'), | |
| 'new_item' => __( 'New Work','webdgallery'), | |
| 'view_item' => __( 'View Work','webdgallery'), | |
| 'search_items' => __( 'Search Portfolio','webdgallery'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //function.php | |
| <?php | |
| add_action( 'cmb2_admin_init', 'cmb2_sample_metaboxes' ); | |
| /** | |
| * Define the metabox and field configurations. | |
| */ | |
| function cmb2_sample_metaboxes() { | |
| // Start with an underscore to hide fields from custom fields list | |
| $prefix = '_yourprefix_'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo get_post_meta(get_the_ID,'$id'true); |