-1

我有一个要在 wordpress 中开发的博客网站项目。我没有 wordpress 工作的经验,我阅读了 Codex 文档,但没有找到我的问题的答案,所以项目要求是,

1:发布带有缩略图的电影、下载或流媒体网站的链接、类型(分类)、Youtube 电影轨迹、

2:用户可以喜欢,评分,评论,添加到观看列表,与朋友分享

3:我有超过 3000 条记录的数据库,由于某些原因,我不想将其插入 wp_posts 表中。

4:如何将javascript添加到小部件或插件(也许这是一个愚蠢的问题)

我的问题是我不知道写方法是什么。WP中有两个主要的东西

1: Plugin

2: Widgets

我如何在我的项目中使用它们?我应该从哪里开始首先,我已经完成了主题开发,以及一些wordpress的基本概念,例如,Action,Filters. 我可以使用 PHP 和 JS 轻松创建这个项目。不要向我推荐任何预制的 wordpress 插件或小部件,我想自己编写代码

4

2 回答 2

0

What do you mean add javascript to widgets or plugins? You can include javascript by adding it to the Theme of the page.

Most of your development should be on a Theme. A Theme is essentially a collection of different page templates, styling and functions that will be used. Theme can also handle taxonomy and meta data.

Since you have a DB already what you could do is make a page template called "movie" that pulls an ID/Slug and retrieves it from the database to get the relevant information.

Helpful Links:

Taxonomy - http://codex.wordpress.org/Taxonomies

Queuing Scripts - http://codex.wordpress.org/Function_Reference/wp_enqueue_script

WPDB (Database Class) - http://codex.wordpress.org/Class_Reference/wpdb

于 2012-10-17T03:04:55.600 回答
0

我认为可能已经有一些主题具有您想要的功能。您是否搜索了股票主题?我遇到过一些带有评分、社交分享等的视频/电影显示。所以你的开发工作会大大减少。

于 2012-10-17T09:32:46.610 回答