class Akismet_REST_API { /** * Register the REST API routes. */ public static function init() { if ( ! function_exists( 'register_rest_route' ) ) { // The REST API wasn't integrated into core until 4.4, and we support 4.0+ (for now). return false; } register_rest_route( 'akismet/v1', '/key', array( array( 'methods' => WP_REST_Server::READABLE, 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'get_key' ), ), array( 'methods' => WP_REST_Server::EDITABLE, 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'set_key' ), 'args' => array( 'key' => array( 'required' => true, 'type' => 'string', 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/get/', 'akismet' ), ), ), ), array( 'methods' => WP_REST_Server::DELETABLE, 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'delete_key' ), ), ) ); register_rest_route( 'akismet/v1', '/settings/', array( array( 'methods' => WP_REST_Server::READABLE, 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'get_settings' ), ), array( 'methods' => WP_REST_Server::EDITABLE, 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'set_boolean_settings' ), 'args' => array( 'akismet_strictness' => array( 'required' => false, 'type' => 'boolean', 'description' => __( 'If true, Akismet will automatically discard the worst spam automatically rather than putting it in the spam folder.', 'akismet' ), ), 'akismet_show_user_comments_approved' => array( 'required' => false, 'type' => 'boolean', 'description' => __( 'If true, show the number of approved comments beside each comment author in the comments list page.', 'akismet' ), ), ), ), ) ); register_rest_route( 'akismet/v1', '/stats', array( 'methods' => WP_REST_Server::READABLE, 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'get_stats' ), 'args' => array( 'interval' => array( 'required' => false, 'type' => 'string', 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_interval' ), 'description' => __( 'The time period for which to retrieve stats. Options: 60-days, 6-months, all', 'akismet' ), 'default' => 'all', ), ), ) ); register_rest_route( 'akismet/v1', '/stats/(?P[\w+])', array( 'args' => array( 'interval' => array( 'description' => __( 'The time period for which to retrieve stats. Options: 60-days, 6-months, all', 'akismet' ), 'type' => 'string', ), ), array( 'methods' => WP_REST_Server::READABLE, 'permission_callback' => array( 'Akismet_REST_API', 'privileged_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'get_stats' ), ), ) ); register_rest_route( 'akismet/v1', '/alert', array( array( 'methods' => WP_REST_Server::READABLE, 'permission_callback' => array( 'Akismet_REST_API', 'remote_call_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'get_alert' ), 'args' => array( 'key' => array( 'required' => false, 'type' => 'string', 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/get/', 'akismet' ), ), ), ), array( 'methods' => WP_REST_Server::EDITABLE, 'permission_callback' => array( 'Akismet_REST_API', 'remote_call_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'set_alert' ), 'args' => array( 'key' => array( 'required' => false, 'type' => 'string', 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/get/', 'akismet' ), ), ), ), array( 'methods' => WP_REST_Server::DELETABLE, 'permission_callback' => array( 'Akismet_REST_API', 'remote_call_permission_callback' ), 'callback' => array( 'Akismet_REST_API', 'delete_alert' ), 'args' => array( 'key' => array( 'required' => false, 'type' => 'string', 'sanitize_callback' => array( 'Akismet_REST_API', 'sanitize_key' ), 'description' => __( 'A 12-character Akismet API key. Available at akismet.com/get/', 'akismet' ), ), ), ), ) ); register_rest_route( 'akismet/v1', '/webhook', array( 'methods' => WP_REST_Server::CREATABLE, 'callback' => array( 'Akismet_REST_API', 'receive_webhook' ), 'permission_callback' => array( 'Akismet_REST_API', 'remote_call_permission_callback' ), ) ); } /** * Get the current Akismet API key. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function get_key( $request = null ) { return rest_ensure_response( Akismet::get_api_key() ); } /** * Set the API key, if possible. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function set_key( $request ) { if ( defined( 'WPCOM_API_KEY' ) ) { return rest_ensure_response( new WP_Error( 'hardcoded_key', __( 'This site\'s API key is hardcoded and cannot be changed via the API.', 'akismet' ), array( 'status' => 409 ) ) ); } $new_api_key = $request->get_param( 'key' ); if ( ! self::key_is_valid( $new_api_key ) ) { return rest_ensure_response( new WP_Error( 'invalid_key', __( 'The value provided is not a valid and registered API key.', 'akismet' ), array( 'status' => 400 ) ) ); } update_option( 'wordpress_api_key', $new_api_key ); return self::get_key(); } /** * Unset the API key, if possible. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function delete_key( $request ) { if ( defined( 'WPCOM_API_KEY' ) ) { return rest_ensure_response( new WP_Error( 'hardcoded_key', __( 'This site\'s API key is hardcoded and cannot be deleted.', 'akismet' ), array( 'status' => 409 ) ) ); } delete_option( 'wordpress_api_key' ); return rest_ensure_response( true ); } /** * Get the Akismet settings. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function get_settings( $request = null ) { return rest_ensure_response( array( 'akismet_strictness' => ( get_option( 'akismet_strictness', '1' ) === '1' ), 'akismet_show_user_comments_approved' => ( get_option( 'akismet_show_user_comments_approved', '1' ) === '1' ), ) ); } /** * Update the Akismet settings. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function set_boolean_settings( $request ) { foreach ( array( 'akismet_strictness', 'akismet_show_user_comments_approved', ) as $setting_key ) { $setting_value = $request->get_param( $setting_key ); if ( is_null( $setting_value ) ) { // This setting was not specified. continue; } // From 4.7+, WP core will ensure that these are always boolean // values because they are registered with 'type' => 'boolean', // but we need to do this ourselves for prior versions. $setting_value = self::parse_boolean( $setting_value ); update_option( $setting_key, $setting_value ? '1' : '0' ); } return self::get_settings(); } /** * Parse a numeric or string boolean value into a boolean. * * @param mixed $value The value to convert into a boolean. * @return bool The converted value. */ public static function parse_boolean( $value ) { switch ( $value ) { case true: case 'true': case '1': case 1: return true; case false: case 'false': case '0': case 0: return false; default: return (bool) $value; } } /** * Get the Akismet stats for a given time period. * * Possible `interval` values: * - all * - 60-days * - 6-months * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function get_stats( $request ) { $api_key = Akismet::get_api_key(); $interval = $request->get_param( 'interval' ); $stat_totals = array(); $request_args = array( 'blog' => get_option( 'home' ), 'key' => $api_key, 'from' => $interval, ); $request_args = apply_filters( 'akismet_request_args', $request_args, 'get-stats' ); $response = Akismet::http_post( Akismet::build_query( $request_args ), 'get-stats' ); if ( ! empty( $response[1] ) ) { $stat_totals[ $interval ] = json_decode( $response[1] ); } return rest_ensure_response( $stat_totals ); } /** * Get the current alert code and message. Alert codes are used to notify the site owner * if there's a problem, like a connection issue between their site and the Akismet API, * invalid requests being sent, etc. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function get_alert( $request ) { return rest_ensure_response( array( 'code' => get_option( 'akismet_alert_code' ), 'message' => get_option( 'akismet_alert_msg' ), ) ); } /** * Update the current alert code and message by triggering a call to the Akismet server. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function set_alert( $request ) { delete_option( 'akismet_alert_code' ); delete_option( 'akismet_alert_msg' ); // Make a request so the most recent alert code and message are retrieved. Akismet::verify_key( Akismet::get_api_key() ); return self::get_alert( $request ); } /** * Clear the current alert code and message. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function delete_alert( $request ) { delete_option( 'akismet_alert_code' ); delete_option( 'akismet_alert_msg' ); return self::get_alert( $request ); } private static function key_is_valid( $key ) { $request_args = array( 'key' => $key, 'blog' => get_option( 'home' ), ); $request_args = apply_filters( 'akismet_request_args', $request_args, 'verify-key' ); $response = Akismet::http_post( Akismet::build_query( $request_args ), 'verify-key' ); if ( $response[1] == 'valid' ) { return true; } return false; } public static function privileged_permission_callback() { return current_user_can( 'manage_options' ); } /** * For calls that Akismet.com makes to the site to clear outdated alert codes, use the API key for authorization. */ public static function remote_call_permission_callback( $request ) { $local_key = Akismet::get_api_key(); return $local_key && ( strtolower( $request->get_param( 'key' ) ) === strtolower( $local_key ) ); } public static function sanitize_interval( $interval, $request, $param ) { $interval = trim( $interval ); $valid_intervals = array( '60-days', '6-months', 'all' ); if ( ! in_array( $interval, $valid_intervals ) ) { $interval = 'all'; } return $interval; } public static function sanitize_key( $key, $request, $param ) { return trim( $key ); } /** * Process a webhook request from the Akismet servers. * * @param WP_REST_Request $request * @return WP_Error|WP_REST_Response */ public static function receive_webhook( $request ) { Akismet::log( array( 'Webhook request received', $request->get_body() ) ); /** * The request body should look like this: * array( * 'key' => '1234567890abcd', * 'endpoint' => '[comment-check|submit-ham|submit-spam]', * 'comments' => array( * array( * 'guid' => '[...]', * 'result' => '[true|false]', * 'comment_author' => '[...]', * [...] * ), * array( * 'guid' => '[...]', * [...], * ), * [...] * ) * ) * * Multiple comments can be included in each request, and the only truly required * field for each is the guid, although it would be friendly to include also * comment_post_ID, comment_parent, and comment_author_email, if possible to make * searching easier. */ // The response will include statuses for the result of each comment that was supplied. $response = array( 'comments' => array(), ); $endpoint = $request->get_param( 'endpoint' ); switch ( $endpoint ) { case 'comment-check': $webhook_comments = $request->get_param( 'comments' ); if ( ! is_array( $webhook_comments ) ) { return rest_ensure_response( new WP_Error( 'malformed_request', __( 'The \'comments\' parameter must be an array.', 'akismet' ), array( 'status' => 400 ) ) ); } foreach ( $webhook_comments as $webhook_comment ) { $guid = $webhook_comment['guid']; if ( ! $guid ) { // Without the GUID, we can't be sure that we're matching the right comment. // We'll make it a rule that any comment without a GUID is ignored intentionally. continue; } // Search on the fields that are indexed in the comments table, plus the GUID. // The GUID is the only thing we really need to search on, but comment_meta // is not indexed in a useful way if there are many many comments. This // should help narrow it down first. $queryable_fields = array( 'comment_post_ID' => 'post_id', 'comment_parent' => 'parent', 'comment_author_email' => 'author_email', ); $query_args = array(); $query_args['status'] = 'any'; $query_args['meta_key'] = 'akismet_guid'; $query_args['meta_value'] = $guid; foreach ( $queryable_fields as $queryable_field => $wp_comment_query_field ) { if ( isset( $webhook_comment[ $queryable_field ] ) ) { $query_args[ $wp_comment_query_field ] = $webhook_comment[ $queryable_field ]; } } $comments_query = new WP_Comment_Query( $query_args ); $comments = $comments_query->comments; if ( ! $comments ) { // Unexpected, although the comment could have been deleted since being submitted. Akismet::log( 'Webhook failed: no matching comment found.' ); $response['comments'][ $guid ] = array( 'status' => 'error', 'message' => __( 'Could not find matching comment.', 'akismet' ), ); continue; } if ( count( $comments ) > 1 ) { // Two comments shouldn't be able to match the same GUID. Akismet::log( 'Webhook failed: multiple matching comments found.', $comments ); $response['comments'][ $guid ] = array( 'status' => 'error', 'message' => __( 'Multiple comments matched request.', 'akismet' ), ); continue; } else { // We have one single match, as hoped for. Akismet::log( 'Found matching comment.', $comments ); $comment = $comments[0]; $current_status = wp_get_comment_status( $comment ); $result = $webhook_comment['result']; if ( 'true' == $result ) { Akismet::log( 'Comment should be spam' ); // The comment should be classified as spam. if ( 'spam' != $current_status ) { // The comment is not classified as spam. If Akismet was the one to act on it, move it to spam. if ( Akismet::last_comment_status_change_came_from_akismet( $comment->comment_ID ) ) { Akismet::log( 'Comment is not spam; marking as spam.' ); wp_spam_comment( $comment ); Akismet::update_comment_history( $comment->comment_ID, '', 'webhook-spam' ); } else { Akismet::log( 'Comment is not spam, but it has already been manually handled by some other process.' ); Akismet::update_comment_history( $comment->comment_ID, '', 'webhook-spam-noaction' ); } } } elseif ( 'false' == $result ) { Akismet::log( 'Comment should be ham' ); // The comment should be classified as ham. if ( 'spam' == $current_status ) { Akismet::log( 'Comment is spam.' ); // The comment is classified as spam. If Akismet was the one to label it as spam, unspam it. if ( Akismet::last_comment_status_change_came_from_akismet( $comment->comment_ID ) ) { Akismet::log( 'Akismet marked it as spam; unspamming.' ); wp_unspam_comment( $comment ); akismet::update_comment_history( $comment->comment_ID, '', 'webhook-ham' ); } else { Akismet::log( 'Comment is not spam, but it has already been manually handled by some other process.' ); Akismet::update_comment_history( $comment->comment_ID, '', 'webhook-ham-noaction' ); } } else if ( 'unapproved' == $current_status ) { Akismet::log( 'Comment is pending.' ); // The comment is in Pending. If Akismet was the one to put it there, approve it (but only if the site // settings dictate that). if ( Akismet::last_comment_status_change_came_from_akismet( $comment->comment_ID ) ) { Akismet::log( 'Akismet marked it as Pending; approving.' ); if ( check_comment( $comment->comment_author, $comment->comment_author_email, $comment->comment_author_url, $comment->comment_content, $comment->comment_author_IP, $comment->comment_agent, $comment->comment_type ) ) { wp_set_comment_status( $comment->comment_ID, 1 ); } akismet::update_comment_history( $comment->comment_ID, '', 'webhook-ham' ); } else { Akismet::log( 'Comment is not spam, but it has already been manually handled by some other process.' ); Akismet::update_comment_history( $comment->comment_ID, '', 'webhook-ham-noaction' ); } } $moderation_email_was_delayed = get_comment_meta( $comment->comment_ID, 'akismet_delayed_moderation_email', true ); if ( $moderation_email_was_delayed ) { Akismet::log( 'Moderation email was delayed for comment #' . $comment->comment_ID . '; sending now.' ); delete_comment_meta( $comment->comment_ID, 'akismet_delayed_moderation_email' ); wp_new_comment_notify_moderator( $comment->comment_ID ); wp_new_comment_notify_postauthor( $comment->comment_ID ); } delete_comment_meta( $comment->comment_ID, 'akismet_delay_moderation_email' ); } $response['comments'][ $guid ] = array( 'status' => 'success' ); } } break; case 'submit-ham': case 'submit-spam': // Nothing to do for submit-ham or submit-spam. break; default: // Unsupported endpoint. break; } /** * Allow plugins to do things with a successfully processed webhook request, like logging. * * @since 5.3.2 * * @param WP_REST_Request $request The REST request object. */ do_action( 'akismet_webhook_received', $request ); Akismet::log( 'Done processing webhook.' ); return rest_ensure_response( $response ); } } /** * Theme functions and definitions * * @package HelloElementor */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } define( 'HELLO_ELEMENTOR_VERSION', '3.4.4' ); define( 'EHP_THEME_SLUG', 'hello-elementor' ); define( 'HELLO_THEME_PATH', get_template_directory() ); define( 'HELLO_THEME_URL', get_template_directory_uri() ); define( 'HELLO_THEME_ASSETS_PATH', HELLO_THEME_PATH . '/assets/' ); define( 'HELLO_THEME_ASSETS_URL', HELLO_THEME_URL . '/assets/' ); define( 'HELLO_THEME_SCRIPTS_PATH', HELLO_THEME_ASSETS_PATH . 'js/' ); define( 'HELLO_THEME_SCRIPTS_URL', HELLO_THEME_ASSETS_URL . 'js/' ); define( 'HELLO_THEME_STYLE_PATH', HELLO_THEME_ASSETS_PATH . 'css/' ); define( 'HELLO_THEME_STYLE_URL', HELLO_THEME_ASSETS_URL . 'css/' ); define( 'HELLO_THEME_IMAGES_PATH', HELLO_THEME_ASSETS_PATH . 'images/' ); define( 'HELLO_THEME_IMAGES_URL', HELLO_THEME_ASSETS_URL . 'images/' ); if ( ! isset( $content_width ) ) { $content_width = 800; // Pixels. } if ( ! function_exists( 'hello_elementor_setup' ) ) { /** * Set up theme support. * * @return void */ function hello_elementor_setup() { if ( is_admin() ) { hello_maybe_update_theme_version_in_db(); } if ( apply_filters( 'hello_elementor_register_menus', true ) ) { register_nav_menus( [ 'menu-1' => esc_html__( 'Header', 'hello-elementor' ) ] ); register_nav_menus( [ 'menu-2' => esc_html__( 'Footer', 'hello-elementor' ) ] ); } if ( apply_filters( 'hello_elementor_post_type_support', true ) ) { add_post_type_support( 'page', 'excerpt' ); } if ( apply_filters( 'hello_elementor_add_theme_support', true ) ) { add_theme_support( 'post-thumbnails' ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'title-tag' ); add_theme_support( 'html5', [ 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'script', 'style', 'navigation-widgets', ] ); add_theme_support( 'custom-logo', [ 'height' => 100, 'width' => 350, 'flex-height' => true, 'flex-width' => true, ] ); add_theme_support( 'align-wide' ); add_theme_support( 'responsive-embeds' ); /* * Editor Styles */ add_theme_support( 'editor-styles' ); add_editor_style( 'editor-styles.css' ); /* * WooCommerce. */ if ( apply_filters( 'hello_elementor_add_woocommerce_support', true ) ) { // WooCommerce in general. add_theme_support( 'woocommerce' ); // Enabling WooCommerce product gallery features (are off by default since WC 3.0.0). // zoom. add_theme_support( 'wc-product-gallery-zoom' ); // lightbox. add_theme_support( 'wc-product-gallery-lightbox' ); // swipe. add_theme_support( 'wc-product-gallery-slider' ); } } } } add_action( 'after_setup_theme', 'hello_elementor_setup' ); function hello_maybe_update_theme_version_in_db() { $theme_version_option_name = 'hello_theme_version'; // The theme version saved in the database. $hello_theme_db_version = get_option( $theme_version_option_name ); // If the 'hello_theme_version' option does not exist in the DB, or the version needs to be updated, do the update. if ( ! $hello_theme_db_version || version_compare( $hello_theme_db_version, HELLO_ELEMENTOR_VERSION, '<' ) ) { update_option( $theme_version_option_name, HELLO_ELEMENTOR_VERSION ); } } if ( ! function_exists( 'hello_elementor_display_header_footer' ) ) { /** * Check whether to display header footer. * * @return bool */ function hello_elementor_display_header_footer() { $hello_elementor_header_footer = true; return apply_filters( 'hello_elementor_header_footer', $hello_elementor_header_footer ); } } if ( ! function_exists( 'hello_elementor_scripts_styles' ) ) { /** * Theme Scripts & Styles. * * @return void */ function hello_elementor_scripts_styles() { if ( apply_filters( 'hello_elementor_enqueue_style', true ) ) { wp_enqueue_style( 'hello-elementor', HELLO_THEME_STYLE_URL . 'reset.css', [], HELLO_ELEMENTOR_VERSION ); } if ( apply_filters( 'hello_elementor_enqueue_theme_style', true ) ) { wp_enqueue_style( 'hello-elementor-theme-style', HELLO_THEME_STYLE_URL . 'theme.css', [], HELLO_ELEMENTOR_VERSION ); } if ( hello_elementor_display_header_footer() ) { wp_enqueue_style( 'hello-elementor-header-footer', HELLO_THEME_STYLE_URL . 'header-footer.css', [], HELLO_ELEMENTOR_VERSION ); } } } add_action( 'wp_enqueue_scripts', 'hello_elementor_scripts_styles' ); if ( ! function_exists( 'hello_elementor_register_elementor_locations' ) ) { /** * Register Elementor Locations. * * @param ElementorPro\Modules\ThemeBuilder\Classes\Locations_Manager $elementor_theme_manager theme manager. * * @return void */ function hello_elementor_register_elementor_locations( $elementor_theme_manager ) { if ( apply_filters( 'hello_elementor_register_elementor_locations', true ) ) { $elementor_theme_manager->register_all_core_location(); } } } add_action( 'elementor/theme/register_locations', 'hello_elementor_register_elementor_locations' ); if ( ! function_exists( 'hello_elementor_content_width' ) ) { /** * Set default content width. * * @return void */ function hello_elementor_content_width() { $GLOBALS['content_width'] = apply_filters( 'hello_elementor_content_width', 800 ); } } add_action( 'after_setup_theme', 'hello_elementor_content_width', 0 ); if ( ! function_exists( 'hello_elementor_add_description_meta_tag' ) ) { /** * Add description meta tag with excerpt text. * * @return void */ function hello_elementor_add_description_meta_tag() { if ( ! apply_filters( 'hello_elementor_description_meta_tag', true ) ) { return; } if ( ! is_singular() ) { return; } $post = get_queried_object(); if ( empty( $post->post_excerpt ) ) { return; } echo '' . "\n"; } } add_action( 'wp_head', 'hello_elementor_add_description_meta_tag' ); // Settings page require get_template_directory() . '/includes/settings-functions.php'; // Header & footer styling option, inside Elementor require get_template_directory() . '/includes/elementor-functions.php'; if ( ! function_exists( 'hello_elementor_customizer' ) ) { // Customizer controls function hello_elementor_customizer() { if ( ! is_customize_preview() ) { return; } if ( ! hello_elementor_display_header_footer() ) { return; } require get_template_directory() . '/includes/customizer-functions.php'; } } add_action( 'init', 'hello_elementor_customizer' ); if ( ! function_exists( 'hello_elementor_check_hide_title' ) ) { /** * Check whether to display the page title. * * @param bool $val default value. * * @return bool */ function hello_elementor_check_hide_title( $val ) { if ( defined( 'ELEMENTOR_VERSION' ) ) { $current_doc = Elementor\Plugin::instance()->documents->get( get_the_ID() ); if ( $current_doc && 'yes' === $current_doc->get_settings( 'hide_title' ) ) { $val = false; } } return $val; } } add_filter( 'hello_elementor_page_title', 'hello_elementor_check_hide_title' ); /** * BC: * In v2.7.0 the theme removed the `hello_elementor_body_open()` from `header.php` replacing it with `wp_body_open()`. * The following code prevents fatal errors in child themes that still use this function. */ if ( ! function_exists( 'hello_elementor_body_open' ) ) { function hello_elementor_body_open() { wp_body_open(); } } require HELLO_THEME_PATH . '/theme.php'; HelloTheme\Theme::instance(); https://salmandsalamat.ir/post-sitemap1.xml 2025-10-09T12:35:56+00:00 https://salmandsalamat.ir/post-sitemap2.xml 2025-10-09T12:34:57+00:00 https://salmandsalamat.ir/post-sitemap3.xml 2025-10-09T12:34:15+00:00 https://salmandsalamat.ir/post-sitemap4.xml 2025-10-09T12:32:26+00:00 https://salmandsalamat.ir/post-sitemap5.xml 2025-10-09T12:31:49+00:00 https://salmandsalamat.ir/post-sitemap6.xml 2025-10-09T12:30:26+00:00 https://salmandsalamat.ir/post-sitemap7.xml 2025-10-09T12:25:24+00:00 https://salmandsalamat.ir/post-sitemap8.xml 2025-10-09T12:25:09+00:00 https://salmandsalamat.ir/post-sitemap9.xml 2025-10-09T12:25:06+00:00 https://salmandsalamat.ir/post-sitemap10.xml 2025-10-09T12:23:09+00:00 https://salmandsalamat.ir/post-sitemap11.xml 2025-10-09T12:22:39+00:00 https://salmandsalamat.ir/post-sitemap12.xml 2025-10-09T12:19:18+00:00 https://salmandsalamat.ir/post-sitemap13.xml 2025-10-09T12:19:03+00:00 https://salmandsalamat.ir/post-sitemap14.xml 2025-10-09T12:18:47+00:00 https://salmandsalamat.ir/post-sitemap15.xml 2025-10-09T12:13:28+00:00 https://salmandsalamat.ir/post-sitemap16.xml 2025-10-09T12:12:45+00:00 https://salmandsalamat.ir/post-sitemap17.xml 2025-10-09T12:12:06+00:00 https://salmandsalamat.ir/post-sitemap18.xml 2025-10-09T12:11:30+00:00 https://salmandsalamat.ir/post-sitemap19.xml 2025-10-09T12:11:15+00:00 https://salmandsalamat.ir/post-sitemap20.xml 2025-10-09T12:07:44+00:00 https://salmandsalamat.ir/post-sitemap21.xml 2025-10-09T12:05:51+00:00 https://salmandsalamat.ir/post-sitemap22.xml 2025-10-09T12:02:46+00:00 https://salmandsalamat.ir/post-sitemap23.xml 2025-10-09T12:02:24+00:00 https://salmandsalamat.ir/post-sitemap24.xml 2025-10-09T12:01:10+00:00 https://salmandsalamat.ir/post-sitemap25.xml 2025-10-09T11:58:46+00:00 https://salmandsalamat.ir/post-sitemap26.xml 2025-10-09T11:58:39+00:00 https://salmandsalamat.ir/post-sitemap27.xml 2025-10-09T11:57:58+00:00 https://salmandsalamat.ir/post-sitemap28.xml 2025-10-09T11:57:12+00:00 https://salmandsalamat.ir/post-sitemap29.xml 2025-10-09T11:55:58+00:00 https://salmandsalamat.ir/post-sitemap30.xml 2025-10-09T11:54:15+00:00 https://salmandsalamat.ir/post-sitemap31.xml 2025-10-09T11:51:38+00:00 https://salmandsalamat.ir/post-sitemap32.xml 2025-10-09T11:49:04+00:00 https://salmandsalamat.ir/post-sitemap33.xml 2025-10-09T11:48:16+00:00 https://salmandsalamat.ir/post-sitemap34.xml 2025-10-09T11:48:02+00:00 https://salmandsalamat.ir/post-sitemap35.xml 2025-10-09T11:44:47+00:00 https://salmandsalamat.ir/post-sitemap36.xml 2025-10-09T11:43:09+00:00 https://salmandsalamat.ir/post-sitemap37.xml 2025-10-09T11:40:18+00:00 https://salmandsalamat.ir/post-sitemap38.xml 2025-10-09T11:37:34+00:00 https://salmandsalamat.ir/post-sitemap39.xml 2025-10-09T11:34:52+00:00 https://salmandsalamat.ir/post-sitemap40.xml 2025-10-09T11:32:34+00:00 https://salmandsalamat.ir/post-sitemap41.xml 2025-10-09T11:32:21+00:00 https://salmandsalamat.ir/post-sitemap42.xml 2025-10-09T11:31:56+00:00 https://salmandsalamat.ir/post-sitemap43.xml 2025-10-09T11:31:34+00:00 https://salmandsalamat.ir/post-sitemap44.xml 2025-10-09T11:30:56+00:00 https://salmandsalamat.ir/post-sitemap45.xml 2025-10-09T11:30:35+00:00 https://salmandsalamat.ir/post-sitemap46.xml 2025-10-09T11:28:05+00:00 https://salmandsalamat.ir/post-sitemap47.xml 2025-10-09T11:27:37+00:00 https://salmandsalamat.ir/post-sitemap48.xml 2025-10-09T11:26:22+00:00 https://salmandsalamat.ir/post-sitemap49.xml 2025-10-09T11:25:47+00:00 https://salmandsalamat.ir/post-sitemap50.xml 2025-10-09T11:24:53+00:00 https://salmandsalamat.ir/post-sitemap51.xml 2025-10-09T11:24:53+00:00 https://salmandsalamat.ir/post-sitemap52.xml 2025-10-09T11:23:32+00:00 https://salmandsalamat.ir/post-sitemap53.xml 2025-10-09T11:23:21+00:00 https://salmandsalamat.ir/post-sitemap54.xml 2025-10-09T11:22:59+00:00 https://salmandsalamat.ir/post-sitemap55.xml 2025-10-09T11:19:59+00:00 https://salmandsalamat.ir/post-sitemap56.xml 2025-10-09T11:18:17+00:00 https://salmandsalamat.ir/post-sitemap57.xml 2025-10-09T11:16:24+00:00 https://salmandsalamat.ir/post-sitemap58.xml 2025-10-09T11:15:43+00:00 https://salmandsalamat.ir/post-sitemap59.xml 2025-10-09T11:15:27+00:00 https://salmandsalamat.ir/post-sitemap60.xml 2025-10-09T11:14:44+00:00 https://salmandsalamat.ir/post-sitemap61.xml 2025-10-09T11:14:10+00:00 https://salmandsalamat.ir/post-sitemap62.xml 2025-10-09T11:13:09+00:00 https://salmandsalamat.ir/post-sitemap63.xml 2025-10-09T11:11:56+00:00 https://salmandsalamat.ir/post-sitemap64.xml 2025-10-09T11:10:00+00:00 https://salmandsalamat.ir/post-sitemap65.xml 2025-10-09T11:08:22+00:00 https://salmandsalamat.ir/post-sitemap66.xml 2025-10-09T11:08:04+00:00 https://salmandsalamat.ir/post-sitemap67.xml 2025-10-09T11:07:54+00:00 https://salmandsalamat.ir/post-sitemap68.xml 2025-10-09T11:07:34+00:00 https://salmandsalamat.ir/post-sitemap69.xml 2025-10-09T11:07:28+00:00 https://salmandsalamat.ir/post-sitemap70.xml 2025-10-09T11:06:52+00:00 https://salmandsalamat.ir/post-sitemap71.xml 2025-10-09T11:05:18+00:00 https://salmandsalamat.ir/post-sitemap72.xml 2025-10-09T11:02:51+00:00 https://salmandsalamat.ir/post-sitemap73.xml 2025-10-09T11:02:26+00:00 https://salmandsalamat.ir/post-sitemap74.xml 2025-10-09T10:59:34+00:00 https://salmandsalamat.ir/post-sitemap75.xml 2025-10-09T10:59:30+00:00 https://salmandsalamat.ir/post-sitemap76.xml 2025-10-09T10:59:05+00:00 https://salmandsalamat.ir/post-sitemap77.xml 2025-10-09T10:57:32+00:00 https://salmandsalamat.ir/post-sitemap78.xml 2025-10-09T10:55:36+00:00 https://salmandsalamat.ir/post-sitemap79.xml 2025-10-09T10:55:23+00:00 https://salmandsalamat.ir/post-sitemap80.xml 2025-10-09T10:51:52+00:00 https://salmandsalamat.ir/post-sitemap81.xml 2025-10-09T10:50:44+00:00 https://salmandsalamat.ir/post-sitemap82.xml 2025-10-09T10:46:23+00:00 https://salmandsalamat.ir/post-sitemap83.xml 2025-10-09T10:46:23+00:00 https://salmandsalamat.ir/post-sitemap84.xml 2025-10-09T10:45:46+00:00 https://salmandsalamat.ir/post-sitemap85.xml 2025-10-09T10:45:27+00:00 https://salmandsalamat.ir/post-sitemap86.xml 2025-10-09T10:44:22+00:00 https://salmandsalamat.ir/post-sitemap87.xml 2025-10-09T10:41:45+00:00 https://salmandsalamat.ir/post-sitemap88.xml 2025-10-09T10:40:02+00:00 https://salmandsalamat.ir/post-sitemap89.xml 2025-10-09T10:36:00+00:00 https://salmandsalamat.ir/post-sitemap90.xml 2025-10-09T10:35:47+00:00 https://salmandsalamat.ir/post-sitemap91.xml 2025-10-09T10:35:30+00:00 https://salmandsalamat.ir/post-sitemap92.xml 2025-10-09T10:31:18+00:00 https://salmandsalamat.ir/post-sitemap93.xml 2025-10-09T10:31:18+00:00 https://salmandsalamat.ir/post-sitemap94.xml 2025-10-09T10:31:07+00:00 https://salmandsalamat.ir/post-sitemap95.xml 2025-10-09T10:31:03+00:00 https://salmandsalamat.ir/post-sitemap96.xml 2025-10-09T10:30:54+00:00 https://salmandsalamat.ir/post-sitemap97.xml 2025-10-09T10:28:31+00:00 https://salmandsalamat.ir/post-sitemap98.xml 2025-10-09T10:28:07+00:00 https://salmandsalamat.ir/post-sitemap99.xml 2025-10-09T10:27:51+00:00 https://salmandsalamat.ir/post-sitemap100.xml 2025-10-09T10:26:56+00:00 https://salmandsalamat.ir/post-sitemap101.xml 2025-10-09T10:26:15+00:00 https://salmandsalamat.ir/post-sitemap102.xml 2025-10-09T10:26:12+00:00 https://salmandsalamat.ir/post-sitemap103.xml 2025-10-09T10:25:10+00:00 https://salmandsalamat.ir/post-sitemap104.xml 2025-10-09T10:21:38+00:00 https://salmandsalamat.ir/post-sitemap105.xml 2025-10-09T10:21:00+00:00 https://salmandsalamat.ir/post-sitemap106.xml 2025-10-09T10:19:33+00:00 https://salmandsalamat.ir/post-sitemap107.xml 2025-10-09T10:19:05+00:00 https://salmandsalamat.ir/post-sitemap108.xml 2025-10-09T10:18:18+00:00 https://salmandsalamat.ir/post-sitemap109.xml 2025-10-09T10:18:18+00:00 https://salmandsalamat.ir/post-sitemap110.xml 2025-10-09T10:17:06+00:00 https://salmandsalamat.ir/post-sitemap111.xml 2025-10-09T10:15:30+00:00 https://salmandsalamat.ir/post-sitemap112.xml 2025-10-09T10:15:16+00:00 https://salmandsalamat.ir/post-sitemap113.xml 2025-10-09T10:14:47+00:00 https://salmandsalamat.ir/post-sitemap114.xml 2025-10-09T10:13:37+00:00 https://salmandsalamat.ir/post-sitemap115.xml 2025-10-09T10:12:12+00:00 https://salmandsalamat.ir/post-sitemap116.xml 2025-10-09T10:12:05+00:00 https://salmandsalamat.ir/post-sitemap117.xml 2025-10-09T10:12:02+00:00 https://salmandsalamat.ir/post-sitemap118.xml 2025-10-09T10:12:01+00:00 https://salmandsalamat.ir/post-sitemap119.xml 2025-10-09T10:09:45+00:00 https://salmandsalamat.ir/post-sitemap120.xml 2025-10-09T10:09:44+00:00 https://salmandsalamat.ir/post-sitemap121.xml 2025-10-09T10:09:41+00:00 https://salmandsalamat.ir/post-sitemap122.xml 2025-10-09T10:07:13+00:00 https://salmandsalamat.ir/post-sitemap123.xml 2025-10-09T10:06:36+00:00 https://salmandsalamat.ir/post-sitemap124.xml 2025-10-09T10:04:41+00:00 https://salmandsalamat.ir/post-sitemap125.xml 2025-10-09T10:04:14+00:00 https://salmandsalamat.ir/post-sitemap126.xml 2025-10-09T10:03:27+00:00 https://salmandsalamat.ir/post-sitemap127.xml 2025-10-09T10:02:29+00:00 https://salmandsalamat.ir/post-sitemap128.xml 2025-10-09T10:02:21+00:00 https://salmandsalamat.ir/post-sitemap129.xml 2025-10-09T10:01:24+00:00 https://salmandsalamat.ir/post-sitemap130.xml 2025-10-09T10:00:31+00:00 https://salmandsalamat.ir/post-sitemap131.xml 2025-10-09T09:57:32+00:00 https://salmandsalamat.ir/post-sitemap132.xml 2025-10-09T09:57:12+00:00 https://salmandsalamat.ir/post-sitemap133.xml 2025-10-09T09:57:05+00:00 https://salmandsalamat.ir/post-sitemap134.xml 2025-10-09T09:55:41+00:00 https://salmandsalamat.ir/post-sitemap135.xml 2025-10-09T09:55:31+00:00 https://salmandsalamat.ir/post-sitemap136.xml 2025-10-09T09:52:46+00:00 https://salmandsalamat.ir/post-sitemap137.xml 2025-10-09T09:51:25+00:00 https://salmandsalamat.ir/post-sitemap138.xml 2025-10-09T09:50:51+00:00 https://salmandsalamat.ir/post-sitemap139.xml 2025-10-09T09:50:35+00:00 https://salmandsalamat.ir/post-sitemap140.xml 2025-10-09T09:50:06+00:00 https://salmandsalamat.ir/post-sitemap141.xml 2025-10-09T09:48:28+00:00 https://salmandsalamat.ir/post-sitemap142.xml 2025-10-09T09:47:36+00:00 https://salmandsalamat.ir/post-sitemap143.xml 2025-10-09T09:46:27+00:00 https://salmandsalamat.ir/post-sitemap144.xml 2025-10-09T09:45:00+00:00 https://salmandsalamat.ir/post-sitemap145.xml 2025-10-09T09:44:58+00:00 https://salmandsalamat.ir/post-sitemap146.xml 2025-10-09T09:44:05+00:00 https://salmandsalamat.ir/post-sitemap147.xml 2025-10-09T09:43:25+00:00 https://salmandsalamat.ir/post-sitemap148.xml 2025-10-09T09:41:11+00:00 https://salmandsalamat.ir/post-sitemap149.xml 2025-10-09T09:39:50+00:00 https://salmandsalamat.ir/post-sitemap150.xml 2025-10-09T09:39:05+00:00 https://salmandsalamat.ir/post-sitemap151.xml 2025-10-09T09:35:18+00:00 https://salmandsalamat.ir/post-sitemap152.xml 2025-10-09T09:34:36+00:00 https://salmandsalamat.ir/post-sitemap153.xml 2025-10-09T09:34:26+00:00 https://salmandsalamat.ir/post-sitemap154.xml 2025-10-09T09:34:17+00:00 https://salmandsalamat.ir/post-sitemap155.xml 2025-10-09T09:33:44+00:00 https://salmandsalamat.ir/post-sitemap156.xml 2025-10-09T09:31:45+00:00 https://salmandsalamat.ir/post-sitemap157.xml 2025-10-09T09:31:02+00:00 https://salmandsalamat.ir/post-sitemap158.xml 2025-10-09T09:29:40+00:00 https://salmandsalamat.ir/post-sitemap159.xml 2025-10-09T09:29:27+00:00 https://salmandsalamat.ir/post-sitemap160.xml 2025-10-09T09:27:08+00:00 https://salmandsalamat.ir/post-sitemap161.xml 2025-10-09T09:26:41+00:00 https://salmandsalamat.ir/post-sitemap162.xml 2025-10-09T09:25:00+00:00 https://salmandsalamat.ir/post-sitemap163.xml 2025-10-09T09:24:49+00:00 https://salmandsalamat.ir/post-sitemap164.xml 2025-10-09T09:23:51+00:00 https://salmandsalamat.ir/post-sitemap165.xml 2025-10-09T09:22:31+00:00 https://salmandsalamat.ir/post-sitemap166.xml 2025-10-09T09:21:22+00:00 https://salmandsalamat.ir/post-sitemap167.xml 2025-10-09T09:20:32+00:00 https://salmandsalamat.ir/post-sitemap168.xml 2025-10-09T09:19:55+00:00 https://salmandsalamat.ir/post-sitemap169.xml 2025-10-09T09:18:05+00:00 https://salmandsalamat.ir/post-sitemap170.xml 2025-10-09T09:17:23+00:00 https://salmandsalamat.ir/post-sitemap171.xml 2025-10-09T09:17:00+00:00 https://salmandsalamat.ir/post-sitemap172.xml 2025-10-09T09:16:10+00:00 https://salmandsalamat.ir/post-sitemap173.xml 2025-10-09T09:16:06+00:00 https://salmandsalamat.ir/post-sitemap174.xml 2025-10-09T09:15:59+00:00 https://salmandsalamat.ir/post-sitemap175.xml 2025-10-09T09:14:56+00:00 https://salmandsalamat.ir/post-sitemap176.xml 2025-10-09T09:13:52+00:00 https://salmandsalamat.ir/post-sitemap177.xml 2025-10-09T09:12:38+00:00 https://salmandsalamat.ir/post-sitemap178.xml 2025-10-09T09:12:36+00:00 https://salmandsalamat.ir/post-sitemap179.xml 2025-10-09T09:12:11+00:00 https://salmandsalamat.ir/post-sitemap180.xml 2025-10-09T09:11:14+00:00 https://salmandsalamat.ir/post-sitemap181.xml 2025-10-09T09:09:37+00:00 https://salmandsalamat.ir/post-sitemap182.xml 2025-10-09T09:08:26+00:00 https://salmandsalamat.ir/post-sitemap183.xml 2025-10-09T09:07:23+00:00 https://salmandsalamat.ir/post-sitemap184.xml 2025-10-09T09:06:58+00:00 https://salmandsalamat.ir/post-sitemap185.xml 2025-10-09T09:06:51+00:00 https://salmandsalamat.ir/post-sitemap186.xml 2025-10-09T09:06:40+00:00 https://salmandsalamat.ir/post-sitemap187.xml 2025-10-09T09:04:25+00:00 https://salmandsalamat.ir/post-sitemap188.xml 2025-10-09T09:04:04+00:00 https://salmandsalamat.ir/post-sitemap189.xml 2025-10-09T09:01:56+00:00 https://salmandsalamat.ir/post-sitemap190.xml 2025-10-09T09:01:53+00:00 https://salmandsalamat.ir/post-sitemap191.xml 2025-10-09T09:01:14+00:00 https://salmandsalamat.ir/post-sitemap192.xml 2025-10-09T09:00:18+00:00 https://salmandsalamat.ir/post-sitemap193.xml 2025-10-09T08:59:51+00:00 https://salmandsalamat.ir/post-sitemap194.xml 2025-10-09T08:59:13+00:00 https://salmandsalamat.ir/post-sitemap195.xml 2025-10-09T08:58:42+00:00 https://salmandsalamat.ir/post-sitemap196.xml 2025-10-09T08:56:36+00:00 https://salmandsalamat.ir/post-sitemap197.xml 2025-10-09T08:56:30+00:00 https://salmandsalamat.ir/post-sitemap198.xml 2025-10-09T08:55:32+00:00 https://salmandsalamat.ir/post-sitemap199.xml 2025-10-09T08:55:25+00:00 https://salmandsalamat.ir/post-sitemap200.xml 2025-10-09T08:55:23+00:00 https://salmandsalamat.ir/post-sitemap201.xml 2025-10-09T08:53:22+00:00 https://salmandsalamat.ir/post-sitemap202.xml 2025-10-09T08:52:12+00:00 https://salmandsalamat.ir/post-sitemap203.xml 2025-10-09T08:51:31+00:00 https://salmandsalamat.ir/post-sitemap204.xml 2025-10-09T08:50:27+00:00 https://salmandsalamat.ir/post-sitemap205.xml 2025-10-09T08:48:25+00:00 https://salmandsalamat.ir/post-sitemap206.xml 2025-10-09T08:47:56+00:00 https://salmandsalamat.ir/post-sitemap207.xml 2025-10-09T08:47:50+00:00 https://salmandsalamat.ir/post-sitemap208.xml 2025-10-09T08:45:15+00:00 https://salmandsalamat.ir/post-sitemap209.xml 2025-10-09T08:44:39+00:00 https://salmandsalamat.ir/post-sitemap210.xml 2025-10-09T08:44:10+00:00 https://salmandsalamat.ir/post-sitemap211.xml 2025-10-09T08:41:13+00:00 https://salmandsalamat.ir/post-sitemap212.xml 2025-10-09T08:40:36+00:00 https://salmandsalamat.ir/post-sitemap213.xml 2025-10-09T08:39:45+00:00 https://salmandsalamat.ir/post-sitemap214.xml 2025-10-09T08:39:34+00:00 https://salmandsalamat.ir/post-sitemap215.xml 2025-10-09T08:36:11+00:00 https://salmandsalamat.ir/post-sitemap216.xml 2025-10-09T08:33:58+00:00 https://salmandsalamat.ir/post-sitemap217.xml 2025-10-09T08:33:12+00:00 https://salmandsalamat.ir/post-sitemap218.xml 2025-10-09T08:33:09+00:00 https://salmandsalamat.ir/post-sitemap219.xml 2025-10-09T08:32:09+00:00 https://salmandsalamat.ir/post-sitemap220.xml 2025-10-09T08:28:27+00:00 https://salmandsalamat.ir/post-sitemap221.xml 2025-10-09T08:25:05+00:00 https://salmandsalamat.ir/post-sitemap222.xml 2025-10-09T08:25:03+00:00 https://salmandsalamat.ir/post-sitemap223.xml 2025-10-09T08:25:02+00:00 https://salmandsalamat.ir/post-sitemap224.xml 2025-10-09T08:25:01+00:00 https://salmandsalamat.ir/post-sitemap225.xml 2025-10-09T08:21:40+00:00 https://salmandsalamat.ir/post-sitemap226.xml 2025-10-09T08:18:28+00:00 https://salmandsalamat.ir/post-sitemap227.xml 2025-10-09T08:16:55+00:00 https://salmandsalamat.ir/post-sitemap228.xml 2025-10-09T08:15:33+00:00 https://salmandsalamat.ir/post-sitemap229.xml 2025-10-09T08:15:06+00:00 https://salmandsalamat.ir/post-sitemap230.xml 2025-10-09T08:14:19+00:00 https://salmandsalamat.ir/post-sitemap231.xml 2025-10-09T08:14:19+00:00 https://salmandsalamat.ir/post-sitemap232.xml 2025-10-09T08:12:21+00:00 https://salmandsalamat.ir/post-sitemap233.xml 2025-10-09T08:12:15+00:00 https://salmandsalamat.ir/post-sitemap234.xml 2025-10-09T08:09:07+00:00 https://salmandsalamat.ir/post-sitemap235.xml 2025-10-09T08:09:05+00:00 https://salmandsalamat.ir/post-sitemap236.xml 2025-10-09T08:07:09+00:00 https://salmandsalamat.ir/post-sitemap237.xml 2025-10-09T08:05:43+00:00 https://salmandsalamat.ir/post-sitemap238.xml 2025-10-09T08:02:21+00:00 https://salmandsalamat.ir/post-sitemap239.xml 2025-10-09T07:59:59+00:00 https://salmandsalamat.ir/post-sitemap240.xml 2025-10-09T07:59:40+00:00 https://salmandsalamat.ir/post-sitemap241.xml 2025-10-09T07:59:09+00:00 https://salmandsalamat.ir/post-sitemap242.xml 2025-10-09T07:55:52+00:00 https://salmandsalamat.ir/post-sitemap243.xml 2025-10-09T07:52:21+00:00 https://salmandsalamat.ir/post-sitemap244.xml 2025-10-09T07:51:50+00:00 https://salmandsalamat.ir/post-sitemap245.xml 2025-10-09T07:50:53+00:00 https://salmandsalamat.ir/post-sitemap246.xml 2025-10-09T07:48:57+00:00 https://salmandsalamat.ir/post-sitemap247.xml 2025-10-09T07:45:34+00:00 https://salmandsalamat.ir/post-sitemap248.xml 2025-10-09T07:43:08+00:00 https://salmandsalamat.ir/post-sitemap249.xml 2025-10-09T07:42:20+00:00 https://salmandsalamat.ir/post-sitemap250.xml 2025-10-09T07:41:59+00:00 https://salmandsalamat.ir/post-sitemap251.xml 2025-10-09T07:36:44+00:00 https://salmandsalamat.ir/post-sitemap252.xml 2025-10-09T07:35:31+00:00 https://salmandsalamat.ir/post-sitemap253.xml 2025-10-09T07:35:26+00:00 https://salmandsalamat.ir/post-sitemap254.xml 2025-10-09T07:33:06+00:00 https://salmandsalamat.ir/post-sitemap255.xml 2025-10-09T07:31:35+00:00 https://salmandsalamat.ir/post-sitemap256.xml 2025-10-09T07:27:45+00:00 https://salmandsalamat.ir/post-sitemap257.xml 2025-10-09T07:27:24+00:00 https://salmandsalamat.ir/post-sitemap258.xml 2025-10-09T07:24:13+00:00 https://salmandsalamat.ir/post-sitemap259.xml 2025-10-09T07:21:12+00:00 https://salmandsalamat.ir/post-sitemap260.xml 2025-10-09T07:21:03+00:00 https://salmandsalamat.ir/post-sitemap261.xml 2025-10-09T07:19:00+00:00 https://salmandsalamat.ir/post-sitemap262.xml 2025-10-09T07:18:10+00:00 https://salmandsalamat.ir/post-sitemap263.xml 2025-10-09T07:15:06+00:00 https://salmandsalamat.ir/post-sitemap264.xml 2025-10-09T07:14:25+00:00 https://salmandsalamat.ir/post-sitemap265.xml 2025-10-09T07:12:16+00:00 https://salmandsalamat.ir/post-sitemap266.xml 2025-10-09T07:10:10+00:00 https://salmandsalamat.ir/post-sitemap267.xml 2025-10-09T07:09:20+00:00 https://salmandsalamat.ir/post-sitemap268.xml 2025-10-09T07:08:52+00:00 https://salmandsalamat.ir/post-sitemap269.xml 2025-10-09T07:05:39+00:00 https://salmandsalamat.ir/post-sitemap270.xml 2025-10-09T07:02:21+00:00 https://salmandsalamat.ir/post-sitemap271.xml 2025-10-09T07:01:48+00:00 https://salmandsalamat.ir/post-sitemap272.xml 2025-10-09T07:01:01+00:00 https://salmandsalamat.ir/post-sitemap273.xml 2025-10-09T07:00:58+00:00 https://salmandsalamat.ir/post-sitemap274.xml 2025-10-09T07:00:32+00:00 https://salmandsalamat.ir/post-sitemap275.xml 2025-10-09T06:58:50+00:00 https://salmandsalamat.ir/post-sitemap276.xml 2025-10-09T06:56:13+00:00 https://salmandsalamat.ir/post-sitemap277.xml 2025-10-09T06:55:21+00:00 https://salmandsalamat.ir/post-sitemap278.xml 2025-10-09T06:51:51+00:00 https://salmandsalamat.ir/post-sitemap279.xml 2025-10-09T06:51:02+00:00 https://salmandsalamat.ir/post-sitemap280.xml 2025-10-09T06:49:42+00:00 https://salmandsalamat.ir/post-sitemap281.xml 2025-10-09T06:48:40+00:00 https://salmandsalamat.ir/post-sitemap282.xml 2025-10-09T06:45:22+00:00 https://salmandsalamat.ir/post-sitemap283.xml 2025-10-09T06:45:13+00:00 https://salmandsalamat.ir/page-sitemap.xml 2024-04-15T12:47:42+00:00 https://salmandsalamat.ir/category-sitemap1.xml 2025-10-09T09:34:17+00:00 https://salmandsalamat.ir/category-sitemap2.xml 2025-10-09T12:32:26+00:00 https://salmandsalamat.ir/category-sitemap3.xml 2025-10-09T12:35:56+00:00