我是wordpress编码的新手,但熟悉标准的HTML / CSS。在各种在线教程的帮助下,我终于得到了一个简单的HTML / CSS网站转换为wordpress的很大一部分,但我错过了一些基础知识。
在这种情况下,我只是尝试设置我的模板以使用page.php文件,以便我可以通过wordpress管理控制台创建页面。我已经弄清楚如何让head.php,footer.php和functions.php为样式和js文件工作,但现在我正在努力处理我需要放置的变量,以便我输入的标题和内容通过wordpress admin显示页面。
我已经尝试了
1)使用div id = content到我的page.php文件 - 这没有用 2)我已经尝试添加到我的page.php文件 - 它没有工作
我似乎无法弄明白。任何帮助将不胜感激。我是一名初学者,所以任何帮助都非常感谢。谢谢!
答案 0 :(得分:0)
这是Wordpress中<?php get_header(); ?>
<div>
<?php
if( have_posts() ) :
while ( have_posts() ) : the_post();
the_title(); // Outputs the title of the page
the_content(); // Outputs the content of the page
endwhile; // End of the loop.
endif;
?>
</div>
<?php get_footer(); ?>
的一个非常基本的模板。
get_the_title()
另外,如果您想先将标题和内容存储在php变量中,可以拨打get_the_content()
和import socket
import os
import sys
import select
from Crypto.Cipher import ARC4
import base64
if(len(sys.argv) < 3) :
print 'Usage : python ./joczoirc.py hostname port nickname room(without the # !!!) enc_password'
sys.exit()
server = sys.argv[1]
port = int(sys.argv[2])
botnick = sys.argv[3]
room = sys.argv[4]
enckey = sys.argv[5]
channel = '#' + room
def encrypt(key, plaintext):
cipher = ARC4.new(key)
return base64.b64encode(cipher.encrypt(plaintext))
def decrypt(key, ciphertext):
cipher = ARC4.new(key)
return cipher.decrypt(base64.b64decode(ciphertext))
irc = socket.socket(socket.AF_INET, socket.SOCK_STREAM) #definialjuk a socketot
print "connecting to:"+server
irc.connect((server, port)) #kapcsolodas a szerverhez
irc.send("USER "+ botnick +" "+ botnick +" "+ botnick +" :Joczo Encrypted IRC\n") #user authentication
irc.send("NICK "+ botnick +"\n") #sets nick
irc.send("PRIVMSG nickserv :iNOOPE\r\n") #auth
irc.send("JOIN "+ channel +"\n") #join the chan
while 1:
socket_list = [1, irc]
read_sockets, write_sockets, error_sockets = select.select(socket_list , [], [])
for sock in read_sockets:
if sock == irc:
text=irc.recv(2040)
if text.find('PING') != -1: #ha talal 'PING' szot
irc.send('PONG ' + text.split() [1] + '\r\n') #viszakuldi 'PONG' szot szervernek hogy meg online van
if text.find(':') != -1:
before_privmsg, privmsg, after_privmsg = text.partition('PRIVMSG')
print '[+] ' + before_privmsg
before_uzenet, uzenet, after_uzenet = text.partition(channel+' :')
if text.find('TITKOS') != -1:
before_encedmsg, encedmsg, after_encedmsg = text.partition('TITKOS')
demsg = decrypt(enckey,after_encedmsg)
print '[-] ' + demsg
else:
print '[!] ' + after_uzenet
else:
mymsg = sys.stdin.readline()
encmsg = encrypt(enckey,mymsg)
irc.send('PRIVMSG '+channel+' : TITKOS'+encmsg+'\r\n')
如果你被卡住了,请告诉我。