/** * Starter Content Compatibility. * * @since 4.0.0 * @package Astra */ /** * Class Astre_Starter_Content */ class Astra_Starter_Content { public const HOME_SLUG = 'home'; public const ABOUT_SLUG = '#about'; public const SERVICES_SLUG = '#services'; public const REVIEWS_SLUG = '#reviews'; public const WHY_US_SLUG = '#whyus'; public const CONTACT_SLUG = '#contact'; /** * Constructor */ public function __construct() { $is_fresh_site = get_option( 'fresh_site' ); if ( ! $is_fresh_site ) { return; } // Adding post meta and inserting post. add_action( 'wp_insert_post', array( $this, 'register_listener', ), 3, 99 ); // Save astra settings into database. add_action( 'customize_save_after', array( $this, 'save_astra_settings', ), 10, 3 ); if ( ! is_customize_preview() ) { return; } // preview customizer values. add_filter( 'default_post_metadata', array( $this, 'starter_meta' ), 99, 3 ); add_filter( 'astra_theme_defaults', array( $this, 'theme_defaults' ) ); add_filter( 'astra_global_color_palette', array( $this, 'theme_color_palettes_defaults' ) ); } /** * Load default starter meta. * * @since 4.0.2 * @param mixed $value Value. * @param int $post_id Post id. * @param string $meta_key Meta key. * * @return string Meta value. */ public function starter_meta( $value, $post_id, $meta_key ) { if ( get_post_type( $post_id ) !== 'page' ) { return $value; } if ( 'site-content-layout' === $meta_key ) { return 'plain-container'; } if ( 'theme-transparent-header-meta' === $meta_key ) { return 'enabled'; } if ( 'site-sidebar-layout' === $meta_key ) { return 'no-sidebar'; } if ( 'site-post-title' === $meta_key ) { return 'disabled'; } return $value; } /** * Register listener to insert post. * * @since 4.0.0 * @param int $post_ID Post Id. * @param \WP_Post $post Post object. * @param bool $update Is update. */ public function register_listener( $post_ID, $post, $update ) { if ( $update ) { return; } $custom_draft_post_name = get_post_meta( $post_ID, '_customize_draft_post_name', true ); $is_from_starter_content = ! empty( $custom_draft_post_name ); if ( ! $is_from_starter_content ) { return; } if ( 'page' === $post->post_type ) { update_post_meta( $post_ID, 'site-content-layout', 'plain-container' ); update_post_meta( $post_ID, 'theme-transparent-header-meta', 'enabled' ); update_post_meta( $post_ID, 'site-sidebar-layout', 'no-sidebar' ); update_post_meta( $post_ID, 'site-post-title', 'disabled' ); } } /** * Get customizer json * * @since 4.0.0 * @return mixed value. */ public function get_customizer_json() { try { $request = wp_remote_get( ASTRA_THEME_URI . 'inc/compatibility/starter-content/astra-settings-export.json' ); } catch ( Exception $ex ) { $request = null; } if ( is_wp_error( $request ) ) { return false; // Bail early. } // @codingStandardsIgnoreStart /** * @psalm-suppress PossiblyNullReference * @psalm-suppress UndefinedMethod * @psalm-suppress PossiblyNullArrayAccess * @psalm-suppress PossiblyNullArgument * @psalm-suppress InvalidScalarArgument */ return json_decode( $request['body'], 1 ); // @codingStandardsIgnoreEnd } /** * Save Astra customizer settings into database. * * @since 4.0.0 */ public function save_astra_settings() { $settings = self::get_customizer_json(); // Delete existing dynamic CSS cache. delete_option( 'astra-settings' ); if ( ! empty( $settings['customizer-settings'] ) ) { foreach ( $settings['customizer-settings'] as $option => $value ) { update_option( $option, $value ); } } } /** * Load default astra settings. * * @since 4.0.0 * @param mixed $defaults defaults. * @return mixed value. */ public function theme_defaults( $defaults ) { $json = ''; $settings = self::get_customizer_json(); if ( ! empty( $settings['customizer-settings'] ) ) { $json = $settings['customizer-settings']['astra-settings']; } return $json ? $json : $defaults; } /** * Load default color palettes. * * @since 4.0.0 * @param mixed $defaults defaults. * @return mixed value. */ public function theme_color_palettes_defaults( $defaults ) { $json = ''; $settings = self::get_customizer_json(); if ( ! empty( $settings['customizer-settings'] ) ) { $json = $settings['customizer-settings']['astra-color-palettes']; } return $json ? $json : $defaults; } /** * Return starter content definition. * * @return mixed|void * @since 4.0.0 */ public function get() { $nav_items_header = array( 'home' => array( 'type' => 'post_type', 'object' => 'page', 'object_id' => '{{' . self::HOME_SLUG . '}}', ), 'about' => array( 'title' => __( 'Services', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::SERVICES_SLUG . '}}', ), 'services' => array( 'title' => __( 'About', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::ABOUT_SLUG . '}}', ), 'reviews' => array( 'title' => __( 'Reviews', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::REVIEWS_SLUG . '}}', ), 'faq' => array( 'title' => __( 'Why Us', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::WHY_US_SLUG . '}}', ), 'contact' => array( 'title' => __( 'Contact', 'astra' ), 'type' => 'custom', 'url' => '{{' . self::CONTACT_SLUG . '}}', ), ); $content = array( 'attachments' => array( 'logo' => array( 'post_title' => _x( 'Logo', 'Theme starter content', 'astra' ), 'file' => 'inc/assets/images/starter-content/logo.png', ), ), 'theme_mods' => array( 'custom_logo' => '{{logo}}', ), 'nav_menus' => array( 'primary' => array( 'name' => esc_html__( 'Primary', 'astra' ), 'items' => $nav_items_header, ), 'mobile_menu' => array( 'name' => esc_html__( 'Primary', 'astra' ), 'items' => $nav_items_header, ), ), 'options' => array( 'page_on_front' => '{{' . self::HOME_SLUG . '}}', 'show_on_front' => 'page', ), 'posts' => array( self::HOME_SLUG => require ASTRA_THEME_DIR . 'inc/compatibility/starter-content/home.php', // PHPCS:ignore WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound ), ); return apply_filters( 'astra_starter_content', $content ); } } whatsapp - Bun Apeti - Burgers and more

whatsapp

WhatsApp 网页版 桌面版及电脑版使用指南 +Shortcut

以下將分別說明在 WhatsApp 和 WhatsApp Business 桌面版上的登入步驟,讓您輕鬆地在電腦上接收和管理訊息。 這些步驟可以幫助你在不同設備上輕鬆使用 WhatsApp 網頁版,無論是個人還是商業用途。 自 2021 年起,WhatsApp 支援多装置登入,用户可同时使用最多4部已连结装置和1部手机。 您可以在电脑、平板、手机等不同装置上同时使用 WhatsApp,而不会打断其他装置上的使用。 此外,多装置登入还提供了更高的安全性,因为每个设备都会获得自己的加密密钥,这意味着即使有人未经授权地访问你的一个装置,也无法访问你的 WhatsApp 账户。 与移动设备不同,在平板电脑上,您可以保持浏览器在标签页中打开,并在任务之间无缝切换。 在數位時代,即時通訊已成為必需品,Whatsapp 等應用程式正在引領這項變革。 儘管很多人都熟悉這款行動應用程序, 在網頁上使用 WhatsApp 提供了很少人充分利用的額外便利。 在本文中,我們將深入探討如何在網路上使用 WhatsApp、它的優勢、基本設定以及充分利用此工具的技巧。 本指南概述了2024年新用戶在Twitter上有效與平台算法互動的策略。 它強調高質量內容、互動和社區建設的重要性,以克服獲得可見性和追隨者的挑戰。 該文件還提供了創建有效互動策略和生成病毒內容創意的見解。 ICareFone Transfer 提供了高效、安全的 WhatsApp 備份方式,特別適合那些需要長期保存聊天記錄或經常更換裝置的用戶。 企业可以透过 SleekFlow 平台可以视觉化设计自动化工作流程,可以将许多重复性的手动工作流程自动化。 比如: AI agent 处理对话后自动,标签细分联络人,并将聊天分派给最适合的销售人员跟进。 能否在一台裝置上登入多個 WhatsApp Web 帳戶? 一旦您将WhatsApp与WhatsApp Web连接,您的聊天记录、联系人和设置将在两个平台上同步。 这意味着您可以在电脑上发送和接收消息,并且所有更改都会在手机和电脑之间同步。 要开始使用WhatsApp Web,首先需要在浏览器中访问web.whatsapp.com。 WhatsApp网页版 这个页面是WhatsApp官方提供的网页版入口,可以让用户通过电脑来访问和使用WhatsApp的功能。 Chatalog 作为Meta的官方合作伙伴,让您一站式管理多个通讯平台,包括WhatsApp、Facebook […]

WhatsApp 网页版 桌面版及电脑版使用指南 +Shortcut Read More »

WhatsApp網頁版 桌面版:登入及使用教學(2025年更新)

錄製語音訊息,不管是要快速打聲招呼,還是分享長篇故事都很適合。 你可以在这里输入消息,并点击发送按钮(通常是一个箭头图标)来发送消息。 此外,你还可以点击旁边的附件按钮,发送照片、视频、文档和其他类型的文件。 Windows WhatsApp 網頁版快捷鍵 在數位時代,即時通訊已成為必需品,Whatsapp 等應用程式正在引領這項變革。 儘管很多人都熟悉這款行動應用程序, 在網頁上使用 WhatsApp 提供了很少人充分利用的額外便利。 在本文中,我們將深入探討如何在網路上使用 WhatsApp、它的優勢、基本設定以及充分利用此工具的技巧。 本指南概述了2024年新用戶在Twitter上有效與平台算法互動的策略。 它強調高質量內容、互動和社區建設的重要性,以克服獲得可見性和追隨者的挑戰。 該文件還提供了創建有效互動策略和生成病毒內容創意的見解。 網絡的WhatsApp 對於那些希望透過電腦快速且有效率地進行通訊的人來說,它已經成為最受歡迎的解決方案之一。 WhatsApp 的網路版本擁有數百萬活躍用戶,不僅匹配行動應用程式的許多功能,還可以讓您方便地從更大的螢幕管理訊息、文件和通話。 然而,最常見的不適之一是 遇到字體太小的訊息,使閱讀和整體體驗變得困難,特別是在長時間工作期間或對於有視力問題的人來說。 WhatsApp Web 登錄透過將您的聊天記錄、檔案和聯絡人直接帶到電腦上,讓保持聯繫變得更加輕鬆。 從解決常見的登錄問題到使用諸如DICloak之類的工具管理多個帳戶,您現在有明確的方法更有效地使用 WhatsApp。 無論是個人使用、商務溝通還是團隊協作,WhatsApp Web 登錄都有助於節省時間並保持一切井然有序。 使用完畢後,如果你希望登出WhatsApp Business網頁版,可以點擊對話列上方的選單 ( 或 ) ,之後按登出即可。 除此之外,你還可以在手機上開啟WhatsApp Business,到已連結裝置,之後點選你希望登出的裝置,再按登出解綁。 WhatsApp Business網頁版的界面和手機版幾乎一模一樣,基本上,你只需要點選對話框,就能和該用戶展開對話,並傳送文字、多媒體訊息、貼圖及文件,非常簡單易用。 如果手机断开网络连接,WhatsApp Web将无法正常使用,页面上会显示“手机未连接”的提示。 检查手机的网络设置,确保没有启用飞行模式,或者尝试重启路由器和手机来解决网络问题。 如果單單是使用WhatsApp Business,企業往往只能在一個手機及一個電腦上回覆客戶,若然客流量較大,無疑會帶來極大不便。 這些步驟可以幫助你在不同設備上輕鬆使用 WhatsApp 網頁版,無論是個人還是商業用途。 WhatsApp Web依赖手机与网络的连接来同步消息。 单击上面的下载按钮,在您的 Mac 或 Windows

WhatsApp網頁版 桌面版:登入及使用教學(2025年更新) Read More »

如何使用 WhatsApp 網頁版? T客邦

该应用程序的界面与桌面界面几乎完全相同,方便您阅读和管理聊天。 這個限制對於公司或商戶來說,會影響多團隊協作和客戶服務效率,特別是在需要多位同事同時處理大量客戶對話時,管理和分派聯絡人及顧客資料會變得困難。 不同版本的 WhatsApp(如網頁版與桌面版)在功能和管理上也有差異,企業需根據需求選擇合適版本。 是的,您可以在多台电脑上同时使用WhatsApp Web。 只需打开新的浏览器窗口,访问WhatsApp官方网站,并使用同一手机上的WhatsApp应用程序扫描新的二维码即可。 所有的聊天记录和联系人将在多台电脑之间同步,方便您在不同设备上使用WhatsApp。 為何 WhatsApp 網頁版無法滿足實際商業應用? WhatsApp 電腦版是一款適用於 Windows 或 Mac 的獨立應用程式,提供與 WhatsApp 網頁版相同的核心功能,但無需開啟瀏覽器分頁即可使用。 完成登入後,你就可以在電腦登入 WhatsApp网页版登录 WhatsApp 網頁版與客戶對話,免安裝都可以發送語音信息、圖像及影像等檔案。 通过以上步骤和建议,你可以轻松地在电脑上使用WhatsApp Web,同时在项目管理和团队协作中选择合适的工具来提高工作效率。 如果 WhatsApp 网页版无法在您的 iPhone 上运行,这篇文章将解释为什么以及如何修复它。 第一种是使用 WhatsApp Web QR 码,另一种是使用您的电话号码。 该平台的兴起满足了人们不再仅仅依赖主手机管理信息和文件的需求,从而促进了持续高效的沟通。 如果您嘗試這些技巧,您會立即註意到透過 PC 聊天時的可訪問性和舒適度的差異。 Omnichat 可協助企業記錄和分析顧客資料,提升服務品質。 如果您使用的是舊版本或實驗版本(例如,基於 Electron 框架的版本),有時需要從官方商店重新安裝應用程式才能獲得所有自訂功能和視覺變化,包括字體大小。 透過此功能,您可以提高可訪問性,減少眼睛疲勞, 根據您的個人需求調整工作環境。 許多人發現在 WhatsApp Web 等流行應用程式中增加字體大小至關重要,因為電腦螢幕通常距離較遠或出於人體工學和眼睛健康的原因。 如有需要登出,用戶同樣可以點擊對話列上方的標示,之後按登出。 當然,你也可以經WhatsApp Business手機版進行解綁,只需到已連結裝置,之後揀選希望登出的裝置,並按登出即可。 比較WhatsApp 桌面版

如何使用 WhatsApp 網頁版? T客邦 Read More »

/** * Template part for displaying the footer info. * * @link https://codex.wordpress.org/Template_Hierarchy * * @package Astra * @since 1.0.0 */ ?>
Scroll to Top