Ŕ?CJs@s°ąCJs0 @s@CJs0 0 @CJs€0 W8@CJsx@CJs@CJs°ACJs@˙˙˙˙˙˙˙˙@žBJs 2EPss@EEPs0 3EPs0 FEPss€3EPsŔFEPs0 ¨@CJsŔ@CJsACJs0 xACJs0 ˙˙˙˙˙˙˙˙€DEPs: 2EPss@EEPs+ 3EPssFEPss€3EPsssedŔFEPsČ8CJsŕ8CJsBCJs+ °8CJs BCJs@t CJs2 2 ŘBCJs˙˙˙˙˙˙˙˙żBJs2 `żBJs2 CCJs0CCJs@sCJs2 @ŕCJs2 @CJs2 2 CCJs€2 s¨CCJsčCCJsDCJs(DCJs@ ƒ2 @&Ŕ CJs2 2 DCJs@s@CJs2 ˙˙˙˙˙˙˙˙ĐBJs2 đ3EPssIEPss@sŕÇ8Js2 @2 @s`CJs2 @(¤CJs2 @s˛CJs2 @€CJs2 2 ECJs€2 8ECJsxECJsECJs°FCJs@ Per˙˙˙˙˙˙˙˙@HEPs•Uđ3EPssIEPs2 2 2 ŘECJs€2 sđECJs0FCJsHFCJsˆTdJs@hCJs2 3  ădJs2 ¨ECJsŔECJsFCJs2 xFCJs2 s˙˙˙˙˙˙˙˙`ĐBJssФCJs4 @CJs4 @•U CJs4 4 GCJs€4 s(GCJs˜GCJsřGCJs L>Ls@CJs4 4 hGCJs4 s€GCJsŕGCJs@s¸CJs4 4 ČGCJs5 ˙˙˙˙˙˙˙˙€JEPs4 ŕFCJsřFCJs8GCJs4 (HCJs@ĽCJs6 @@CJs6 @•U`CJs6 6 HCJs€6 s¨HCJsICJsxICJs L>Ls@@˛CJs6 6 čHCJs6 sICJs`ICJs˙˙˙˙˙˙˙˙ŔĐBJssHICJs7 6 `HCJsxHCJs¸HCJs6 ¨ICJs2 ECJsHECJs€2  'ŔŕICJsˆJCJsxLCJs@@ĽCJs7 @s€CJs7 €7 s@JCJs ˙˙˙˙˙˙˙˙ ŃBJssp˛CJs7 @ CJs7 7 ¸JCJs€7 sĐJCJsKCJs(KCJsHLCJs@ ˛CJs7 @sCJs7 @xĽCJs7 @ŔCJs7 @ŕCJs7 7 pKCJs€7 ˆKCJsČKCJsŕKCJs˙˙˙˙˙˙˙˙€ŃBJssyIJsČŁEJs7 @KCJsXKCJs˜KCJs7 LCJs7 €0LCJsŕyIJs7  JCJsŕJCJs2 đDCJsřICJs€2 s¨CCJsčCCJsDCJs(DCJs@DCJs¨DCJsŔDCJsŘDCJsLCJs˙˙˙˙˙˙˙˙ŕŃBJsP2 `CCJsxCCJs¨LCJs2 HCCJs8MCJs@CJs9 9 pMCJs@< CJs9 €9 ˆMCJs˜MCJs@†9 9 °MCJsČMCJs@>XCJs9 @s@CJs9 @`CJs9 ˙˙˙˙˙˙˙˙@ŇBJs9  ŇBJss†9 @•U€CJs9 9 ˜NCJs@s€CJs9 @ CJs9 €9 @NCJs€NCJs°NCJsŔNCJsŘNCJs@OCJsXOCJspOCJs@ě\Ls9 @9 @ŔCJs˙˙˙˙˙˙˙˙`ÓBJssвCJs9 @sŕCJs9 9 ¸OCJs€9 ĐOCJsPCJs> 'wp_navigation', 'no_found_rows' => true, 'update_post_meta_cache' => false, 'update_post_term_cache' => false, 'order' => 'DESC', 'orderby' => 'date', 'post_status' => 'publish', 'posts_per_page' => 1, ); $navigation_post = new WP_Query( $parsed_args ); if ( count( $navigation_post->posts ) > 0 ) { return $navigation_post->posts[0]; } return null; } /** * Creates a Navigation Menu post from a Classic Menu. * * @since 6.3.0 * * @return int|WP_Error The post ID of the default fallback menu or a WP_Error object. */ private static function create_classic_menu_fallback() { // See if we have a classic menu. $classic_nav_menu = static::get_fallback_classic_menu(); if ( ! $classic_nav_menu ) { return new WP_Error( 'no_classic_menus', __( 'No Classic Menus found.' ) ); } // If there is a classic menu then convert it to blocks. $classic_nav_menu_blocks = WP_Classic_To_Block_Menu_Converter::convert( $classic_nav_menu ); if ( is_wp_error( $classic_nav_menu_blocks ) ) { return $classic_nav_menu_blocks; } if ( empty( $classic_nav_menu_blocks ) ) { return new WP_Error( 'cannot_convert_classic_menu', __( 'Unable to convert Classic Menu to blocks.' ) ); } // Create a new navigation menu from the classic menu. $classic_menu_fallback = wp_insert_post( array( 'post_content' => $classic_nav_menu_blocks, 'post_title' => $classic_nav_menu->name, 'post_name' => $classic_nav_menu->slug, 'post_status' => 'publish', 'post_type' => 'wp_navigation', ), true // So that we can check whether the result is an error. ); return $classic_menu_fallback; } /** * Determines the most appropriate classic navigation menu to use as a fallback. * * @since 6.3.0 * * @return WP_Term|null The most appropriate classic navigation menu to use as a fallback. */ private static function get_fallback_classic_menu() { $classic_nav_menus = wp_get_nav_menus(); if ( ! $classic_nav_menus || is_wp_error( $classic_nav_menus ) ) { return null; } $nav_menu = static::get_nav_menu_at_primary_location(); if ( $nav_menu ) { return $nav_menu; } $nav_menu = static::get_nav_menu_with_primary_slug( $classic_nav_menus ); if ( $nav_menu ) { return $nav_menu; } return static::get_most_recently_created_nav_menu( $classic_nav_menus ); } /** * Sorts the classic menus and returns the most recently created one. * * @since 6.3.0 * * @param WP_Term[] $classic_nav_menus Array of classic nav menu term objects. * @return WP_Term The most recently created classic nav menu. */ private static function get_most_recently_created_nav_menu( $classic_nav_menus ) { usort( $classic_nav_menus, static function ( $a, $b ) { return $b->term_id - $a->term_id; } ); return $classic_nav_menus[0]; } /** * Returns the classic menu with the slug `primary` if it exists. * * @since 6.3.0 * * @param WP_Term[] $classic_nav_menus Array of classic nav menu term objects. * @return WP_Term|null The classic nav menu with the slug `primary` or null. */ private static function get_nav_menu_with_primary_slug( $classic_nav_menus ) { foreach ( $classic_nav_menus as $classic_nav_menu ) { if ( 'primary' === $classic_nav_menu->slug ) { return $classic_nav_menu; } } return null; } /** * Gets the classic menu assigned to the `primary` navigation menu location * if it exists. * * @since 6.3.0 * * @return WP_Term|null The classic nav menu assigned to the `primary` location or null. */ private static function get_nav_menu_at_primary_location() { $locations = get_nav_menu_locations(); if ( isset( $locations['primary'] ) ) { $primary_menu = wp_get_nav_menu_object( $locations['primary'] ); if ( $primary_menu ) { return $primary_menu; } } return null; } /** * Creates a default Navigation Block Menu fallback. * * @since 6.3.0 * * @return int|WP_Error The post ID of the default fallback menu or a WP_Error object. */ private static function create_default_fallback() { $default_blocks = static::get_default_fallback_blocks(); // Create a new navigation menu from the fallback blocks. $default_fallback = wp_insert_post( array( 'post_content' => $default_blocks, 'post_title' => _x( 'Navigation', 'Title of a Navigation menu' ), 'post_name' => 'navigation', 'post_status' => 'publish', 'post_type' => 'wp_navigation', ), true // So that we can check whether the result is an error. ); return $default_fallback; } /** * Gets the rendered markup for the default fallback blocks. * * @since 6.3.0 * * @return string default blocks markup to use a the fallback. */ private static function get_default_fallback_blocks() { $registry = WP_Block_Type_Registry::get_instance(); // If `core/page-list` is not registered then use empty blocks. return $registry->is_registered( 'core/page-list' ) ? '' : ''; } } Dreamy Reality | Featured Personality - Priya Limbu Maden

Priya Limbu Maden

Model

Miss Priya Limbu Maden is a model, business women currently based in Kathmandu, Nepal.

About Priya

She is a very resilient, tenacious, authentic and optimistic girl with a Bachelor Degree in Business Administration from Thames International College, Tribhuwan University.
As a person she is someone who believes in the story of a phoenix bird that rises from its own ashes, no matter how much time it dies. With her kind heart, she loves to help people who are in need and aims to bring positive change in the life of Nepalese with her works.
She is passionate about influencing people through communication and creating an impact on the lives of people and her surroundings. She loves to keep herself updated with current fashion trends and participate in fashion related events.
For Priya, life is like a beautiful journey where she feels as she is walking in her treasure quest, so wants to achieve all the hidden treasures in her life. She wants to be remembered for her work and for all the small efforts, she could make to bring positive change on people’s lives and wellbeing.

Besides her modeling career, she has participated in many beauty pageants holding title as Miss Model Quest International Nepal 2016 and Miss Mongol Nepal 2021-1st Runner-up.

She is a humanitarian who believes we as humans are the superior of all the living beings, so we must leave our mark and impact either more or less, so that our existence would be worth than other being.
In her leisure time she keeps herself occupied in understanding people’s ideologies, exploring new things, spending time with family and living in the present.
For all the new coming generations and youngsters, she says, “Just work hard, dream big and always stay focused on your goal. Make sure to believe in yourself and learn to have patience in life. Don’t forget to keep moving towards your dream no matter what comes in your way. In life, you are given a role so it’s your duty to portray your true character with full responsibility, you must remember that you might fall or might break but always remember to stand up and move on because life goes on. Live your life to the fullest.”
Share on social network
Scroll to Top