Tác giả: admin

Cập nhật đếm lượt xem của chap và tổng lượt xem truyện.

Áp dụng các giao diện: 

Fix:

Cách 1: Tải lại file backup mới nhất trong thư mục tải đã mua (file 4/10/2024) và restore lại website

Cách 2: Lên thư mục tải file functions.php và tải nó lên /public_html/wp-content/themes/theme-child/ thay thế cho functions.php

Cách 3: Mở file functions.php trong /public_html/wp-content/themes/theme-child/ tìm đến đoạn code

add_action( 'wp_head', function() {
	if ( is_singular('chap') ) {
		$current_chap = get_queried_object();
		$parent_id = (int) $current_chap->post_parent;
		
		if ( $parent_id ) {
			?>
			<script>
				(function(){
					if ( 'undefined' !== typeof WordPressPopularPosts && 'undefined' !== typeof wpp_params ) {
						WordPressPopularPosts.post(
							wpp_params.apiUrl + '/v2/views/<?php echo $parent_id; ?>',
							"_wpnonce=" + wpp_params.token + "&sampling=" + wpp_params.sampling + "&sampling_rate=" + wpp_params.samplingRate,
							function( response ) {
								wpp_params.debug&&window.console&&window.console.log&&window.console.log(JSON.parse(response));
							}
						);
					}
				})();
			</script>
			<?php
		}
	}
}, 99);

Và thay nó bằng:

 add_action( 'wp_head', function() {
 	if ( is_singular('chap') ) {
 		$current_chap = get_queried_object();
 		$parent_id = (int) $current_chap->post_parent;

 		if ( $parent_id ) {
 			?>
 			<script>
 				(function(){
 					if ( 'undefined' !== typeof WordPressPopularPosts && 'undefined' !== typeof wpp_params ) {
 						WordPressPopularPosts.post(
 							wpp_params.apiUrl + '/v2/views/<?php echo $parent_id; ?>',
               "_wpnonce=" + wpp_params.token + "&sampling=" + wpp_params.sampling + "&sampling_rate=" + wpp_params.samplingRate,
               function( response ) {
                   wpp_params.debug&&window.console&&window.console.log&&window.console.log(JSON.parse(response));
 							}
 						);
 					}
 				})();
 			</script>
 			<?php
 		}
 	}
 }, 99);

Hướng dẫn viết shortcode trong wordpress

Để tạo shortcode trong WordPress, bạn cần làm theo các bước sau:

B1. Mở tập tin functions.php của chủ đề của bạn trong thư mục WordPress.

B2. Thêm mã PHP sau để tạo shortcode mới:

function shortcode_function_name() {
// Code to be executed when shortcode is used
return "Output from shortcode";
}
add_shortcode('shortcode_tag', 'shortcode_function_name');

B3. Thay thế “shortcode_tag” với tên shortcode mà bạn muốn sử dụng, và “shortcode_function_name” với tên hàm mà bạn muốn sử dụng để thực hiện shortcode.

B4. Thêm nội dung vào hàm “shortcode_function_name” để xác định nội dung cần hiển thị khi shortcode được sử dụng.

B5. Lưu lại và bắt đầu sử dụng shortcode trong bài viết hoặc trang của bạn bằng cách sử dụng cú pháp sau: [shortcode_tag].

Chú ý: Để tạo shortcode trong WordPress, bạn cần có kiến thức căn bản về HTML, CSS và PHP.

Ví dụ một shortcode hoàn chỉnh trong wordpress:

function display_post_title_shortcode() {
  global $post;
  return $post->post_title;
}
add_shortcode( 'display_post_title', 'display_post_title_shortcode' );

Sử dụng shortcode trong bài viết hoặc trang của bạn bằng cách sử dụng cú pháp sau: [display_post_title].

ChatGPT

Continue reading

SẢN PHẨM ĐÃ ĐƯỢC XEM

Không có sản phẩm nào đã xem!

© THEMEWP.TOP - All Rights Reserved